This adds all the bootstrapping to quickly add benchmarks for pieces afterwards. Instructions for running added to the README.
11 lines
424 B
XML
11 lines
424 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.0;net462</TargetFrameworks>
|
|
<Configuration>Release</Configuration>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Ben.Demystifier\Ben.Demystifier.csproj" />
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.10.12" />
|
|
</ItemGroup>
|
|
</Project> |