-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathBenchmark.csproj
43 lines (38 loc) · 1.72 KB
/
Benchmark.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AssemblyName>Samples.Benchmark</AssemblyName>
<RootNamespace>Samples.Benchmark</RootNamespace>
<InvariantGlobalization>true</InvariantGlobalization>
</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="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.*" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.*" />
<PackageReference Include="Stl.Fusion.Server" Version="6.8.11" />
<PackageReference Include="Stl.RestEase" Version="6.8.11" />
</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="RestEase.SourceGenerator" Version="1.6.4" />
<PackageReference Include="Stl.Generators" Version="6.8.11" />
</ItemGroup>
</Project>