Google.Protobuf.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  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.6.1</VersionPrefix>
  7. <LangVersion>6</LangVersion>
  8. <Authors>Google Inc.</Authors>
  9. <TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
  10. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  11. <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
  12. <SignAssembly>true</SignAssembly>
  13. <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
  14. <PackageTags>Protocol;Buffers;Binary;Serialization;Format;Google;proto;proto3</PackageTags>
  15. <PackageReleaseNotes>C# proto3 support</PackageReleaseNotes>
  16. <PackageProjectUrl>https://github.com/protocolbuffers/protobuf</PackageProjectUrl>
  17. <PackageLicenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</PackageLicenseUrl>
  18. <RepositoryType>git</RepositoryType>
  19. <RepositoryUrl>https://github.com/protocolbuffers/protobuf.git</RepositoryUrl>
  20. </PropertyGroup>
  21. <!--
  22. - Override target frameworks on non-Windows to just .NET Core
  23. - Doing this conditionally in the initial PropertyGroup confuses
  24. - Visual Studio.
  25. -->
  26. <PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
  27. <TargetFrameworks>netstandard1.0</TargetFrameworks>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <PackageReference Include="SourceLink.Create.CommandLine" PrivateAssets="All" Version="2.7.6"/>
  31. </ItemGroup>
  32. </Project>