-
Notifications
You must be signed in to change notification settings - Fork 607
/
Copy pathMiniProfiler.Benchmarks.csproj
28 lines (25 loc) · 1.14 KB
/
MiniProfiler.Benchmarks.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>MiniProfiler.Benchmarks</AssemblyName>
<PackageId>MiniProfiler.Benchmarks</PackageId>
<OutputType>Exe</OutputType>
<RootNamespace>Benchmarks</RootNamespace>
<Configuration>Release</Configuration>
<TargetFrameworks>net472;net8.0</TargetFrameworks>
<PlatformTarget>AnyCPU</PlatformTarget>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="Jil" Version="2.17" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ServiceStack.Text" Version="8.5.2" />
<PackageReference Include="Sigil" Version="5.0.0" />
<PackageReference Include="System.Reflection.Metadata" Version="8.0.1" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
<ProjectReference Include="..\..\src\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="System.Web.Extensions" />
</ItemGroup>
</Project>