mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-12 05:58:34 +00:00
103 lines
4.4 KiB
XML
103 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{E420CE17-2F13-4ABC-87D7-C9744DF39D3D}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>OSCADSharp</RootNamespace>
|
|
<AssemblyName>OSCADSharp</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Debug\OSCADSharp.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Release\OSCADSharp.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="BindableBoolean.cs" />
|
|
<Compile Include="IBindings.cs" />
|
|
<Compile Include="CubeBindings.cs" />
|
|
<Compile Include="SphereBindings.cs" />
|
|
<Compile Include="ICloneable.cs" />
|
|
<Compile Include="CubeScriptBuilder.cs" />
|
|
<Compile Include="SphereScriptBuilder.cs" />
|
|
<Compile Include="VariableCalculator.cs" />
|
|
<Compile Include="CompoundVariable.cs" />
|
|
<Compile Include="Dependencies.cs" />
|
|
<Compile Include="IO\DefaultFileInvoker.cs" />
|
|
<Compile Include="IO\DefaultFileWriter.cs" />
|
|
<Compile Include="IO\IFileInvoker.cs" />
|
|
<Compile Include="IO\IFileWriter.cs" />
|
|
<Compile Include="Utility\Ids.cs" />
|
|
<Compile Include="IO\OpenSCADPathFinder.cs" />
|
|
<Compile Include="Binding.cs" />
|
|
<Compile Include="Bindings.cs" />
|
|
<Compile Include="IBindable.cs" />
|
|
<Compile Include="SingleStatementObject.cs" />
|
|
<Compile Include="StatementBuilder.cs" />
|
|
<Compile Include="Variable.cs" />
|
|
<Compile Include="IO\OutputSettings.cs" />
|
|
<Compile Include="Utility\Inches.cs" />
|
|
<Compile Include="BindableVector.cs" />
|
|
<Compile Include="Bounds.cs" />
|
|
<Compile Include="Matrix.cs" />
|
|
<Compile Include="HulledObject.cs" />
|
|
<Compile Include="SingleBlockFormatter.cs" />
|
|
<Compile Include="MultiStatementObject.cs" />
|
|
<Compile Include="Difference.cs" />
|
|
<Compile Include="Intersection.cs" />
|
|
<Compile Include="Union.cs" />
|
|
<Compile Include="OSCADObject.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Cube.cs" />
|
|
<Compile Include="Cylinder.cs" />
|
|
<Compile Include="Sphere.cs" />
|
|
<Compile Include="Text3D.cs" />
|
|
<Compile Include="ColoredObject.cs" />
|
|
<Compile Include="MinkowskiedObject.cs" />
|
|
<Compile Include="MirroredObject.cs" />
|
|
<Compile Include="ResizedObject.cs" />
|
|
<Compile Include="RotatedObject.cs" />
|
|
<Compile Include="ScaledObject.cs" />
|
|
<Compile Include="TranslatedObject.cs" />
|
|
<Compile Include="Vector3.cs" />
|
|
<Compile Include="Variables.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup />
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<!-- 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.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |