Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description> |
| 5 | <Copyright>Copyright 2015, Google Inc.</Copyright> |
| 6 | <AssemblyTitle>Google Protocol Buffers</AssemblyTitle> |
Adam Cozzette | 9e1286b | 2018-07-27 10:54:14 -0700 | [diff] [blame] | 7 | <VersionPrefix>3.6.1</VersionPrefix> |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 8 | <Authors>Google Inc.</Authors> |
Jan Tattermusch | 50a6475 | 2017-09-05 17:59:03 +0200 | [diff] [blame] | 9 | <TargetFrameworks>netstandard1.0;net45</TargetFrameworks> |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 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> |
Feng Xiao | afe98de | 2018-08-22 11:55:30 -0700 | [diff] [blame] | 16 | <PackageProjectUrl>https://github.com/protocolbuffers/protobuf</PackageProjectUrl> |
| 17 | <PackageLicenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</PackageLicenseUrl> |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 18 | <RepositoryType>git</RepositoryType> |
Feng Xiao | afe98de | 2018-08-22 11:55:30 -0700 | [diff] [blame] | 19 | <RepositoryUrl>https://github.com/protocolbuffers/protobuf.git</RepositoryUrl> |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 20 | </PropertyGroup> |
| 21 | |
| 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 | |
Cameron Taggart | 394866c | 2018-05-14 15:46:03 -0500 | [diff] [blame] | 31 | <ItemGroup> |
| 32 | <PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="All" /> |
| 33 | </ItemGroup> |
| 34 | |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 35 | </Project> |