mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:45:42 +00:00
19 lines
472 B
XML
19 lines
472 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
|
|
<Configuration>Release</Configuration>
|
|
<OutputType>Exe</OutputType>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.5"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\X10D\X10D.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|