15 lines
646 B
XML
15 lines
646 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<AssemblyName>Just.PreciseMath.Benchmarks</AssemblyName>
|
|
<RootNamespace>Just.PreciseMath.Benchmarks</RootNamespace>
|
|
<Description>BenchmarkDotNet scaffold for measuring Just.PreciseMath arithmetic and mathematical functions.</Description>
|
|
<!-- Source-free scaffold: change to Exe when adding the benchmark entry point. -->
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
|
|
<ProjectReference Include="../../0-source/Just.PreciseMath/Just.PreciseMath.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|