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