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> 7 <VersionPrefix>3.9.0</VersionPrefix> 8 <LangVersion>6</LangVersion> 9 <Authors>Google Inc.</Authors> 10 <TargetFrameworks>netstandard1.0;netstandard2.0;net45</TargetFrameworks> 11 <GenerateDocumentationFile>true</GenerateDocumentationFile> 12 <AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile> 13 <SignAssembly>true</SignAssembly> 14 <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> 15 <PackageTags>Protocol;Buffers;Binary;Serialization;Format;Google;proto;proto3</PackageTags> 16 <PackageReleaseNotes>C# proto3 support</PackageReleaseNotes> 17 <PackageProjectUrl>https://github.com/protocolbuffers/protobuf</PackageProjectUrl> 18 <PackageLicenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</PackageLicenseUrl> 19 <RepositoryType>git</RepositoryType> 20 <RepositoryUrl>https://github.com/protocolbuffers/protobuf.git</RepositoryUrl> 21 <!-- Include PDB in the built .nupkg --> 22 <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> 23 </PropertyGroup> 24 25 <!-- 26 - Override target frameworks on non-Windows to just .NET Core 27 - Doing this conditionally in the initial PropertyGroup confuses 28 - Visual Studio. 29 --> 30 <PropertyGroup Condition="'$(OS)' != 'Windows_NT'"> 31 <TargetFrameworks>netstandard1.0;netstandard2.0</TargetFrameworks> 32 </PropertyGroup> 33 34 <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> 35 <PackageReference Include="System.Memory" Version="4.5.2"/> 36 </ItemGroup> 37 38 <ItemGroup> 39 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="1.0.0-beta2-18618-05"/> 40 </ItemGroup> 41 42</Project> 43