Shifted all files to Internal/Public root folders to deliniate things that are internal versus public.

This commit is contained in:
Michael L Smith 2016-03-06 16:40:45 -08:00
parent 301e92dfff
commit 2ca5c42094
42 changed files with 41 additions and 41 deletions

View File

@ -42,48 +42,48 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Bindings\BindableBoolean.cs" />
<Compile Include="Scripting\VariableCalculator.cs" />
<Compile Include="Settings\Dependencies.cs" />
<Compile Include="Files\DefaultFileInvoker.cs" />
<Compile Include="Files\DefaultFileWriter.cs" />
<Compile Include="Files\IFileInvoker.cs" />
<Compile Include="Files\IFileWriter.cs" />
<Compile Include="Settings\Ids.cs" />
<Compile Include="Settings\OpenSCADPathFinder.cs" />
<Compile Include="Bindings\Binding.cs" />
<Compile Include="Bindings\Bindings.cs" />
<Compile Include="Bindings\IBindable.cs" />
<Compile Include="Scripting\SingleStatementObject.cs" />
<Compile Include="Scripting\StatementBuilder.cs" />
<Compile Include="Scripting\Variable.cs" />
<Compile Include="Settings\Settings.cs" />
<Compile Include="Inches.cs" />
<Compile Include="Bindings\BindableVector.cs" />
<Compile Include="Spatial\Bounds.cs" />
<Compile Include="Spatial\Matrix.cs" />
<Compile Include="Transforms\HulledObject.cs" />
<Compile Include="Transforms\LinearExtrudedObject.cs" />
<Compile Include="Scripting\SingleBlockFormatter.cs" />
<Compile Include="Scripting\MultiStatementObject.cs" />
<Compile Include="Booleans\Difference.cs" />
<Compile Include="Booleans\Intersection.cs" />
<Compile Include="Booleans\Union.cs" />
<Compile Include="OSCADObject.cs" />
<Compile Include="Internal\Bindings\BindableBoolean.cs" />
<Compile Include="Internal\Scripting\VariableCalculator.cs" />
<Compile Include="Public\Settings\Dependencies.cs" />
<Compile Include="Internal\Files\DefaultFileInvoker.cs" />
<Compile Include="Internal\Files\DefaultFileWriter.cs" />
<Compile Include="Public\Files\IFileInvoker.cs" />
<Compile Include="Public\Files\IFileWriter.cs" />
<Compile Include="Internal\Settings\Ids.cs" />
<Compile Include="Internal\Settings\OpenSCADPathFinder.cs" />
<Compile Include="Internal\Bindings\Binding.cs" />
<Compile Include="Internal\Bindings\Bindings.cs" />
<Compile Include="Internal\Bindings\IBindable.cs" />
<Compile Include="Internal\Scripting\SingleStatementObject.cs" />
<Compile Include="Internal\Scripting\StatementBuilder.cs" />
<Compile Include="Public\Scripting\Variable.cs" />
<Compile Include="Public\Settings\Settings.cs" />
<Compile Include="Public\Inches.cs" />
<Compile Include="Internal\Bindings\BindableVector.cs" />
<Compile Include="Internal\Spatial\Bounds.cs" />
<Compile Include="Internal\Spatial\Matrix.cs" />
<Compile Include="Internal\Transforms\HulledObject.cs" />
<Compile Include="Internal\Transforms\LinearExtrudedObject.cs" />
<Compile Include="Internal\Scripting\SingleBlockFormatter.cs" />
<Compile Include="Internal\Scripting\MultiStatementObject.cs" />
<Compile Include="Internal\Booleans\Difference.cs" />
<Compile Include="Internal\Booleans\Intersection.cs" />
<Compile Include="Internal\Booleans\Union.cs" />
<Compile Include="Public\OSCADObject.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Solids\Cube.cs" />
<Compile Include="Solids\Cylinder.cs" />
<Compile Include="Solids\Sphere.cs" />
<Compile Include="Solids\Text3D.cs" />
<Compile Include="Transforms\ColoredObject.cs" />
<Compile Include="Transforms\MinkowskiedObject.cs" />
<Compile Include="Transforms\MirroredObject.cs" />
<Compile Include="Transforms\ResizedObject.cs" />
<Compile Include="Transforms\RotatedObject.cs" />
<Compile Include="Transforms\ScaledObject.cs" />
<Compile Include="Transforms\TranslatedObject.cs" />
<Compile Include="Spatial\Vector3.cs" />
<Compile Include="Scripting\Variables.cs" />
<Compile Include="Public\Solids\Cube.cs" />
<Compile Include="Public\Solids\Cylinder.cs" />
<Compile Include="Public\Solids\Sphere.cs" />
<Compile Include="Public\Solids\Text3D.cs" />
<Compile Include="Internal\Transforms\ColoredObject.cs" />
<Compile Include="Internal\Transforms\MinkowskiedObject.cs" />
<Compile Include="Internal\Transforms\MirroredObject.cs" />
<Compile Include="Internal\Transforms\ResizedObject.cs" />
<Compile Include="Internal\Transforms\RotatedObject.cs" />
<Compile Include="Internal\Transforms\ScaledObject.cs" />
<Compile Include="Internal\Transforms\TranslatedObject.cs" />
<Compile Include="Public\Spatial\Vector3.cs" />
<Compile Include="Public\Scripting\Variables.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />