33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<Platforms>x64</Platforms>
|
|
<Configurations>Debug;Release;Deterministic</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.179">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Simulator\Craftimizer.Simulator.csproj" />
|
|
<ProjectReference Include="..\Solver\Craftimizer.Solver.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(IS_BENCH)'=='1' Or '$(Configuration)'=='Deterministic'">
|
|
<DefineConstants>$(DefineConstants);IS_DETERMINISTIC</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|