-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHyperbee.Json.Benchmark.csproj
More file actions
39 lines (33 loc) · 1.43 KB
/
Hyperbee.Json.Benchmark.csproj
File metadata and controls
39 lines (33 loc) · 1.43 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
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="benchmark\**" />
<EmbeddedResource Remove="benchmark\**" />
<None Remove="benchmark\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="JsonCons.JsonPath" Version="1.1.0" />
<PackageReference Include="JsonCraft.JsonPath" Version="1.0.0" />
<PackageReference Include="JsonPatch.Net" Version="4.0.1" />
<PackageReference Include="JsonPath.Net" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="10.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Hyperbee.Json\Hyperbee.Json.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Update="Nerdbank.GitVersioning" Version="3.9.50" />
</ItemGroup>
</Project>