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.
44 lines
2.5 KiB
44 lines
2.5 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description> |
|
<Copyright>Copyright 2015, Google Inc.</Copyright> |
|
<AssemblyTitle>Google Protocol Buffers</AssemblyTitle> |
|
<VersionPrefix>3.12.2</VersionPrefix> |
|
<!-- C# 7.2 is required for Span/BufferWriter/ReadOnlySequence --> |
|
<LangVersion>7.2</LangVersion> |
|
<Authors>Google Inc.</Authors> |
|
<TargetFrameworks>netstandard1.1;netstandard2.0;net45</TargetFrameworks> |
|
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> |
|
<SignAssembly>true</SignAssembly> |
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> |
|
<PackageTags>Protocol;Buffers;Binary;Serialization;Format;Google;proto;proto3</PackageTags> |
|
<PackageReleaseNotes>C# proto3 support</PackageReleaseNotes> |
|
<PackageProjectUrl>https://github.com/protocolbuffers/protobuf</PackageProjectUrl> |
|
<PackageLicenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</PackageLicenseUrl> |
|
<RepositoryType>git</RepositoryType> |
|
<RepositoryUrl>https://github.com/protocolbuffers/protobuf.git</RepositoryUrl> |
|
<DefineConstants>$(DefineConstants);GOOGLE_PROTOBUF_SUPPORT_SYSTEM_MEMORY</DefineConstants> |
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
|
<!-- Include PDB in the built .nupkg --> |
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
|
<DefineConstants>$(DefineConstants);GOOGLE_PROTOBUF_SUPPORT_FAST_STRING</DefineConstants> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="System.Memory" Version="4.5.2"/> |
|
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="1.0.0"/> |
|
<!-- Needed for the net45 build to work on Unix. See https://github.com/dotnet/designs/pull/33 --> |
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.0"/> |
|
</ItemGroup> |
|
|
|
<!-- Needed for netcoreapp2.1 to work correctly. .NET is not able to load the assembly without this --> |
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.2"/> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|