Google.Protobuf.csproj 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.7.0</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. <!-- Include PDB in the built .nupkg -->
  21. <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
  22. </PropertyGroup>
  23. <!--
  24. - Override target frameworks on non-Windows to just .NET Core
  25. - Doing this conditionally in the initial PropertyGroup confuses
  26. - Visual Studio.
  27. -->
  28. <PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
  29. <TargetFrameworks>netstandard1.0</TargetFrameworks>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
  33. </ItemGroup>
  34. </Project>