Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
26 lines
869 B
26 lines
869 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFramework>net5.0</TargetFramework> |
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> |
|
<SignAssembly>true</SignAssembly> |
|
<IsPackable>False</IsPackable> |
|
<DebugType>pdbonly</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="..\Google.Protobuf.Test\ReadOnlySequenceFactory.cs" Link="ReadOnlySequenceFactory.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" /> |
|
<ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<EmbeddedResource Include="..\..\..\benchmarks\datasets\google_message1\proto3\dataset.google_message1_proto3.pb" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|