Google.Protobuf.csproj 1.56 KB
Newer Older
1 2 3 4 5 6
<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>
7
    <VersionPrefix>3.6.0</VersionPrefix>
8
    <Authors>Google Inc.</Authors>
9
    <TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
10 11 12 13 14 15 16 17 18
    <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/google/protobuf</PackageProjectUrl>
    <PackageLicenseUrl>https://github.com/google/protobuf/blob/master/LICENSE</PackageLicenseUrl>
    <RepositoryType>git</RepositoryType>
19
    <RepositoryUrl>https://github.com/google/protobuf.git</RepositoryUrl>
20 21 22 23 24 25 26 27 28 29 30
  </PropertyGroup>

  <!-- 
    - Override target frameworks on non-Windows to just .NET Core
    - Doing this conditionally in the initial PropertyGroup confuses
    - Visual Studio.
    -->
  <PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
    <TargetFrameworks>netstandard1.0</TargetFrameworks>
  </PropertyGroup>

31 32 33 34
  <ItemGroup>
    <PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="All" /> 
  </ItemGroup>

35
</Project>