mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +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 Moq;
|
||||
using OSCADSharp.Files;
|
||||
using OSCADSharp.Scripting;
|
||||
using OSCADSharp.Solids;
|
||||
using System;
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Moq;
|
||||
using OSCADSharp.Files;
|
||||
using OSCADSharp.Scripting;
|
||||
using OSCADSharp.Solids;
|
||||
using System;
|
||||
|
||||
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Scripting
|
||||
namespace OSCADSharp.Files
|
||||
{
|
||||
internal class DefaultFileInvoker : IFileInvoker
|
||||
{
|
||||
@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Scripting
|
||||
namespace OSCADSharp.Files
|
||||
{
|
||||
internal class DefaultFileWriter : IFileWriter
|
||||
{
|
||||
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Scripting
|
||||
namespace OSCADSharp.Files
|
||||
{
|
||||
/// <summary>
|
||||
/// Invokes OpenSCAD actions on output files
|
||||
@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace OSCADSharp.Scripting
|
||||
namespace OSCADSharp.Files
|
||||
{
|
||||
/// <summary>
|
||||
/// A class that takes text and writes to file
|
||||
@ -1,4 +1,5 @@
|
||||
using OSCADSharp.Booleans;
|
||||
using OSCADSharp.Files;
|
||||
using OSCADSharp.Scripting;
|
||||
using OSCADSharp.Spatial;
|
||||
using OSCADSharp.Transforms;
|
||||
|
||||
@ -42,10 +42,10 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Scripting\DefaultFileInvoker.cs" />
|
||||
<Compile Include="Scripting\DefaultFileWriter.cs" />
|
||||
<Compile Include="Scripting\IFileInvoker.cs" />
|
||||
<Compile Include="Scripting\IFileWriter.cs" />
|
||||
<Compile Include="Files\DefaultFileInvoker.cs" />
|
||||
<Compile Include="Files\DefaultFileWriter.cs" />
|
||||
<Compile Include="Files\IFileInvoker.cs" />
|
||||
<Compile Include="Files\IFileWriter.cs" />
|
||||
<Compile Include="Ids.cs" />
|
||||
<Compile Include="Scripting\StatementBuilder.cs" />
|
||||
<Compile Include="Settings.cs" />
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using OSCADSharp.Scripting;
|
||||
using OSCADSharp.Files;
|
||||
using OSCADSharp.Scripting;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user