80 lines
3.6 KiB
XML
80 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.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>{0083B9CC-54AD-4085-A30D-56BC6834B71A}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>OpenNest</RootNamespace>
|
|
<AssemblyName>OpenNest.Engine</AssemblyName>
|
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<TargetFrameworkProfile />
|
|
</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>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</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>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="BestCombination.cs" />
|
|
<Compile Include="BestFit\PairCandidate.cs" />
|
|
<Compile Include="BestFit\BestFitResult.cs" />
|
|
<Compile Include="BestFit\IBestFitStrategy.cs" />
|
|
<Compile Include="BestFit\PairEvaluator.cs" />
|
|
<Compile Include="BestFit\RotationSlideStrategy.cs" />
|
|
<Compile Include="CirclePacking\Bin.cs" />
|
|
<Compile Include="CirclePacking\FillEndEven.cs" />
|
|
<Compile Include="CirclePacking\FillEndOdd.cs" />
|
|
<Compile Include="CirclePacking\FillEngine.cs" />
|
|
<Compile Include="CirclePacking\Item.cs" />
|
|
<Compile Include="FillLinear.cs" />
|
|
<Compile Include="NestDirection.cs" />
|
|
<Compile Include="NestEngine.cs" />
|
|
<Compile Include="NestItem.cs" />
|
|
<Compile Include="Pattern.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="RectanglePacking\Bin.cs" />
|
|
<Compile Include="RectanglePacking\FillBestFit.cs" />
|
|
<Compile Include="RectanglePacking\FillEngine.cs" />
|
|
<Compile Include="RectanglePacking\Item.cs" />
|
|
<Compile Include="RectanglePacking\PackBottomLeft.cs" />
|
|
<Compile Include="RectanglePacking\PackEngine.cs" />
|
|
<Compile Include="RectanglePacking\FillNoRotation.cs" />
|
|
<Compile Include="RectanglePacking\FillSameRotation.cs" />
|
|
<Compile Include="RectanglePacking\PackFirstFitDecreasing.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj">
|
|
<Project>{5a5fde8d-f8db-440e-866c-c4807e1686cf}</Project>
|
|
<Name>OpenNest.Core</Name>
|
|
</ProjectReference>
|
|
</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> |