1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFramework>netcoreapp2.1</TargetFramework> 6 <IsPackable>False</IsPackable> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <PackageReference Include="BenchmarkDotNet" Version="0.11.4" /> 11 <ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> 12 </ItemGroup> 13 14 <ItemGroup> 15 <EmbeddedResource Include="..\..\..\benchmarks\datasets\google_message1\proto3\dataset.google_message1_proto3.pb" /> 16 </ItemGroup> 17 18</Project> 19