-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHyperbee.Json.Benchmark.csproj
More file actions
33 lines (28 loc) · 1.06 KB
/
Hyperbee.Json.Benchmark.csproj
File metadata and controls
33 lines (28 loc) · 1.06 KB
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
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="benchmark\**" />
<EmbeddedResource Remove="benchmark\**" />
<None Remove="benchmark\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="JsonCons.JsonPath" />
<PackageReference Include="JsonPatch.Net" />
<PackageReference Include="JsonPath.Net" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Update="Microsoft.SourceLink.GitHub" />
<PackageReference Update="Nerdbank.GitVersioning" />
</ItemGroup>
<!-- JsonCraft.JsonPath is only available for .NET 9.0 and later -->
<ItemGroup Condition="'$(TargetFramework)' != 'net8.0'">
<PackageReference Include="JsonCraft.JsonPath" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Hyperbee.Json\Hyperbee.Json.csproj" />
</ItemGroup>
</Project>