1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFramework>net6.0</TargetFramework> 6 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> 7 <SignAssembly>true</SignAssembly> 8 <IsPackable>False</IsPackable> 9 <DebugType>pdbonly</DebugType> 10 <DebugSymbols>true</DebugSymbols> 11 </PropertyGroup> 12 13 <ItemGroup> 14 <Compile Include="..\Google.Protobuf.Test\ReadOnlySequenceFactory.cs" Link="ReadOnlySequenceFactory.cs" /> 15 </ItemGroup> 16 17 <ItemGroup> 18 <PackageReference Include="BenchmarkDotNet" Version="0.13.1" /> 19 <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> 20 </ItemGroup> 21 22 <ItemGroup> 23 <EmbeddedResource Include="..\..\..\benchmarks\datasets\google_message1\proto3\dataset.google_message1_proto3.pb" /> 24 </ItemGroup> 25 26</Project> 27