Google.Protobuf.csproj 1.61 KB
Newer Older
1
<Project Sdk="Microsoft.NET.Sdk">
2 3 4 5 6

  <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.1</VersionPrefix>
8
    <LangVersion>6</LangVersion>
9
    <Authors>Google Inc.</Authors>
10
    <TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
11 12 13 14 15 16
    <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>
Feng Xiao's avatar
Feng Xiao committed
17 18
    <PackageProjectUrl>https://github.com/protocolbuffers/protobuf</PackageProjectUrl>
    <PackageLicenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</PackageLicenseUrl>
19
    <RepositoryType>git</RepositoryType>
Feng Xiao's avatar
Feng Xiao committed
20
    <RepositoryUrl>https://github.com/protocolbuffers/protobuf.git</RepositoryUrl>
21 22 23 24 25 26 27 28 29 30 31
  </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>

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

36
</Project>