Google.Protobuf.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description>
  4. <Copyright>Copyright 2015, Google Inc.</Copyright>
  5. <AssemblyTitle>Google Protocol Buffers</AssemblyTitle>
  6. <VersionPrefix>3.5.1</VersionPrefix>
  7. <Authors>Google Inc.</Authors>
  8. <TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
  9. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  10. <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
  11. <SignAssembly>true</SignAssembly>
  12. <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
  13. <PackageTags>Protocol;Buffers;Binary;Serialization;Format;Google;proto;proto3</PackageTags>
  14. <PackageReleaseNotes>C# proto3 support</PackageReleaseNotes>
  15. <PackageProjectUrl>https://github.com/google/protobuf</PackageProjectUrl>
  16. <PackageLicenseUrl>https://github.com/google/protobuf/blob/master/LICENSE</PackageLicenseUrl>
  17. <RepositoryType>git</RepositoryType>
  18. <RepositoryUrl>https://github.com/google/protobuf.git</RepositoryUrl>
  19. <IncludeSymbols>true</IncludeSymbols>
  20. <IncludeSource>true</IncludeSource>
  21. </PropertyGroup>
  22. <!--
  23. - Override target frameworks on non-Windows to just .NET Core
  24. - Doing this conditionally in the initial PropertyGroup confuses
  25. - Visual Studio.
  26. -->
  27. <PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
  28. <TargetFrameworks>netstandard1.0</TargetFrameworks>
  29. </PropertyGroup>
  30. </Project>