24 lines
823 B
XML
24 lines
823 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.92">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="ObjectLayoutInspector" Version="0.1.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Simulator\Craftimizer.Simulator.csproj" />
|
|
<ProjectReference Include="..\Solver\Craftimizer.Solver.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|