Google.Protobuf.Benchmarks.csproj 948 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
  6. <SignAssembly>true</SignAssembly>
  7. <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
  8. <IsPackable>False</IsPackable>
  9. <DebugType>pdbonly</DebugType>
  10. <DebugSymbols>true</DebugSymbols>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <Compile Include="..\Google.Protobuf.Test\ReadOnlySequenceFactory.cs" Link="ReadOnlySequenceFactory.cs" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
  17. <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <EmbeddedResource Include="..\..\..\benchmarks\datasets\google_message1\proto3\dataset.google_message1_proto3.pb" />
  21. </ItemGroup>
  22. </Project>