Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
873 B
26 lines
873 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFrameworks>net462;net6.0</TargetFrameworks> |
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> |
|
<SignAssembly>true</SignAssembly> |
|
<IsPackable>False</IsPackable> |
|
<LangVersion>8.0</LangVersion> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="NUnit" Version="3.6.1" /> |
|
<PackageReference Include="NUnitLite" Version="3.6.1" /> |
|
</ItemGroup> |
|
|
|
<!-- Needed for the netfx build to work on Unix. See https://github.com/dotnet/designs/pull/33 --> |
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|