Benchmarks.csproj 569 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <RootNamespace>SimpleW</RootNamespace>
  8. <ServerGarbageCollection>true</ServerGarbageCollection>
  9. <TieredPGO>true</TieredPGO>
  10. <RuntimeIdentifier>linux-musl-x64</RuntimeIdentifier>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="SimpleW" Version="16.1.0" />
  14. </ItemGroup>
  15. </Project>