mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-23 03:08:28 +00:00
Shifted FileInvoker/Writer classes to /Files, updated namespace to OSCADSharp.Files
This commit is contained in:
parent
4474d43532
commit
ac6f3c2f51
@ -1,5 +1,6 @@
|
|||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using Moq;
|
using Moq;
|
||||||
|
using OSCADSharp.Files;
|
||||||
using OSCADSharp.Scripting;
|
using OSCADSharp.Scripting;
|
||||||
using OSCADSharp.Solids;
|
using OSCADSharp.Solids;
|
||||||
using System;
|
using System;
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using Moq;
|
using Moq;
|
||||||
|
using OSCADSharp.Files;
|
||||||
using OSCADSharp.Scripting;
|
using OSCADSharp.Scripting;
|
||||||
using OSCADSharp.Solids;
|
using OSCADSharp.Solids;
|
||||||
using System;
|
using System;
|
||||||
|
|||||||
@ -5,7 +5,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace OSCADSharp.Scripting
|
namespace OSCADSharp.Files
|
||||||
{
|
{
|
||||||
internal class DefaultFileInvoker : IFileInvoker
|
internal class DefaultFileInvoker : IFileInvoker
|
||||||
{
|
{
|
||||||
@ -5,7 +5,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace OSCADSharp.Scripting
|
namespace OSCADSharp.Files
|
||||||
{
|
{
|
||||||
internal class DefaultFileWriter : IFileWriter
|
internal class DefaultFileWriter : IFileWriter
|
||||||
{
|
{
|
||||||
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace OSCADSharp.Scripting
|
namespace OSCADSharp.Files
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Invokes OpenSCAD actions on output files
|
/// Invokes OpenSCAD actions on output files
|
||||||
@ -4,7 +4,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace OSCADSharp.Scripting
|
namespace OSCADSharp.Files
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A class that takes text and writes to file
|
/// A class that takes text and writes to file
|
||||||
@ -1,4 +1,5 @@
|
|||||||
using OSCADSharp.Booleans;
|
using OSCADSharp.Booleans;
|
||||||
|
using OSCADSharp.Files;
|
||||||
using OSCADSharp.Scripting;
|
using OSCADSharp.Scripting;
|
||||||
using OSCADSharp.Spatial;
|
using OSCADSharp.Spatial;
|
||||||
using OSCADSharp.Transforms;
|
using OSCADSharp.Transforms;
|
||||||
|
|||||||
@ -42,10 +42,10 @@
|
|||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Scripting\DefaultFileInvoker.cs" />
|
<Compile Include="Files\DefaultFileInvoker.cs" />
|
||||||
<Compile Include="Scripting\DefaultFileWriter.cs" />
|
<Compile Include="Files\DefaultFileWriter.cs" />
|
||||||
<Compile Include="Scripting\IFileInvoker.cs" />
|
<Compile Include="Files\IFileInvoker.cs" />
|
||||||
<Compile Include="Scripting\IFileWriter.cs" />
|
<Compile Include="Files\IFileWriter.cs" />
|
||||||
<Compile Include="Ids.cs" />
|
<Compile Include="Ids.cs" />
|
||||||
<Compile Include="Scripting\StatementBuilder.cs" />
|
<Compile Include="Scripting\StatementBuilder.cs" />
|
||||||
<Compile Include="Settings.cs" />
|
<Compile Include="Settings.cs" />
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
using OSCADSharp.Scripting;
|
using OSCADSharp.Files;
|
||||||
|
using OSCADSharp.Scripting;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user