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.
31 lines
1.1 KiB
31 lines
1.1 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFrameworks>net451;netcoreapp2.1;net50</TargetFrameworks> |
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> |
|
<SignAssembly>true</SignAssembly> |
|
<IsPackable>False</IsPackable> |
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Google.Protobuf\Google.Protobuf.csproj" /> |
|
<ProjectReference Include="..\Google.Protobuf.Test.TestProtos\Google.Protobuf.Test.TestProtos.csproj"/> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" /> |
|
<PackageReference Include="NUnit" Version="3.9.0" /> |
|
<PackageReference Include="NUnit3TestAdapter" Version="3.9.0" /> |
|
</ItemGroup> |
|
|
|
<!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 --> |
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<EmbeddedResource Include="testprotos.pb" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|