Temporarily moved all classes to the root folder

This commit is contained in:
Michael Smith 2016-03-16 22:03:57 -07:00
parent 1edce998d1
commit 90866d5406
48 changed files with 48 additions and 47 deletions

View File

@ -42,58 +42,59 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Internal\Bindings\BindableBoolean.cs" /> <Compile Include="BindableBoolean.cs" />
<Compile Include="Internal\Bindings\IBindings.cs" /> <Compile Include="IBindings.cs" />
<Compile Include="Internal\Bindings\Solids\CubeBindings.cs" /> <Compile Include="CubeBindings.cs" />
<Compile Include="Internal\Bindings\Solids\SphereBindings.cs" /> <Compile Include="SphereBindings.cs" />
<Compile Include="Internal\ICloneable.cs" /> <Compile Include="ICloneable.cs" />
<Compile Include="Internal\Scripting\Solids\CubeScriptBuilder.cs" /> <Compile Include="CubeScriptBuilder.cs" />
<Compile Include="Internal\Scripting\Solids\SphereScriptBuilder.cs" /> <Compile Include="SphereScriptBuilder.cs" />
<Compile Include="Internal\Scripting\VariableCalculator.cs" /> <Compile Include="VariableCalculator.cs" />
<Compile Include="Internal\Scripting\CompoundVariable.cs" /> <Compile Include="CompoundVariable.cs" />
<Compile Include="Public\Settings\Dependencies.cs" /> <Compile Include="Dependencies.cs" />
<Compile Include="Internal\Files\DefaultFileInvoker.cs" /> <Compile Include="DefaultFileInvoker.cs" />
<Compile Include="Internal\Files\DefaultFileWriter.cs" /> <Compile Include="DefaultFileWriter.cs" />
<Compile Include="Public\Files\IFileInvoker.cs" /> <Compile Include="IFileInvoker.cs" />
<Compile Include="Public\Files\IFileWriter.cs" /> <Compile Include="IFileWriter.cs" />
<Compile Include="Internal\Settings\Ids.cs" /> <Compile Include="Ids.cs" />
<Compile Include="Internal\Settings\OpenSCADPathFinder.cs" /> <Compile Include="OpenSCADPathFinder.cs" />
<Compile Include="Internal\Bindings\Binding.cs" /> <Compile Include="Binding.cs" />
<Compile Include="Internal\Bindings\Bindings.cs" /> <Compile Include="Bindings.cs" />
<Compile Include="Internal\Bindings\IBindable.cs" /> <Compile Include="IBindable.cs" />
<Compile Include="Internal\Scripting\SingleStatementObject.cs" /> <Compile Include="SingleStatementObject.cs" />
<Compile Include="Internal\Scripting\StatementBuilder.cs" /> <Compile Include="StatementBuilder.cs" />
<Compile Include="Public\Scripting\Variable.cs" /> <Compile Include="Variable.cs" />
<Compile Include="Public\Settings\Settings.cs" /> <Compile Include="Settings.cs" />
<Compile Include="Public\Inches.cs" /> <Compile Include="Inches.cs" />
<Compile Include="Internal\Bindings\BindableVector.cs" /> <Compile Include="BindableVector.cs" />
<Compile Include="Public\Spatial\Bounds.cs" /> <Compile Include="Bounds.cs" />
<Compile Include="Internal\Spatial\Matrix.cs" /> <Compile Include="Matrix.cs" />
<Compile Include="Internal\Transforms\HulledObject.cs" /> <Compile Include="HulledObject.cs" />
<Compile Include="Internal\Scripting\SingleBlockFormatter.cs" /> <Compile Include="SingleBlockFormatter.cs" />
<Compile Include="Internal\Scripting\MultiStatementObject.cs" /> <Compile Include="MultiStatementObject.cs" />
<Compile Include="Internal\Booleans\Difference.cs" /> <Compile Include="Difference.cs" />
<Compile Include="Internal\Booleans\Intersection.cs" /> <Compile Include="Intersection.cs" />
<Compile Include="Internal\Booleans\Union.cs" /> <Compile Include="Union.cs" />
<Compile Include="Public\OSCADObject.cs" /> <Compile Include="OSCADObject.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Public\Solids\Cube.cs" /> <Compile Include="Cube.cs" />
<Compile Include="Public\Solids\Cylinder.cs" /> <Compile Include="Cylinder.cs" />
<Compile Include="Public\Solids\Sphere.cs" /> <Compile Include="Sphere.cs" />
<Compile Include="Public\Solids\Text3D.cs" /> <Compile Include="Text3D.cs" />
<Compile Include="Internal\Transforms\ColoredObject.cs" /> <Compile Include="ColoredObject.cs" />
<Compile Include="Internal\Transforms\MinkowskiedObject.cs" /> <Compile Include="MinkowskiedObject.cs" />
<Compile Include="Internal\Transforms\MirroredObject.cs" /> <Compile Include="MirroredObject.cs" />
<Compile Include="Internal\Transforms\ResizedObject.cs" /> <Compile Include="ResizedObject.cs" />
<Compile Include="Internal\Transforms\RotatedObject.cs" /> <Compile Include="RotatedObject.cs" />
<Compile Include="Internal\Transforms\ScaledObject.cs" /> <Compile Include="ScaledObject.cs" />
<Compile Include="Internal\Transforms\TranslatedObject.cs" /> <Compile Include="TranslatedObject.cs" />
<Compile Include="Public\Spatial\Vector3.cs" /> <Compile Include="Vector3.cs" />
<Compile Include="Public\Scripting\Variables.cs" /> <Compile Include="Variables.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="OSCADSharp.nuspec" /> <None Include="OSCADSharp.nuspec" />
</ItemGroup> </ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.