-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathRpcBenchmark.csproj
54 lines (49 loc) · 2.12 KB
/
RpcBenchmark.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AssemblyName>Samples.RpcBenchmark</AssemblyName>
<RootNamespace>Samples.RpcBenchmark</RootNamespace>
<InvariantGlobalization>true</InvariantGlobalization>
<!--
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
-->
</PropertyGroup>
<!-- Performance-related settings -->
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
<TieredCompilationQuickJitForLoops>false</TieredCompilationQuickJitForLoops>
<TieredPGO>true</TieredPGO>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../Stl.Benchmarking/Stl.Benchmarking.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.56.0" />
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.56.0" />
<PackageReference Include="MagicOnion" Version="4.5.2" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.0" />
<PackageReference Include="Stl.Fusion" Version="6.8.11" />
<PackageReference Include="Stl.Rpc.Server" Version="6.8.11" />
<PackageReference Include="Stl.RestEase" Version="6.8.11" />
<PackageReference Include="StreamJsonRpc" Version="2.17.8" />
</ItemGroup>
<!-- Roslyn generators/analyzers -->
<ItemGroup>
<PackageReference Include="MemoryPack.Generator" Version="1.10.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Ookii.CommandLine" Version="4.0.1" />
<PackageReference Include="RestEase.SourceGenerator" Version="1.6.4" />
<PackageReference Include="Stl.Generators" Version="6.8.11" />
</ItemGroup>
<!-- Protobuf files -->
<ItemGroup>
<Protobuf Include="Contracts\HelloWorld.proto" />
</ItemGroup>
</Project>