Merge pull request #18085 from jtattermusch/csharp_csproj_cleanup

C#: csproj cleanup
pull/18103/head
Jan Tattermusch 6 years ago committed by GitHub
commit 68381892d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      src/csharp/Grpc.Auth/Grpc.Auth.csproj
  2. 18
      src/csharp/Grpc.Core.Api/Grpc.Core.Api.csproj
  3. 16
      src/csharp/Grpc.Core.NativeDebug/Grpc.Core.NativeDebug.csproj
  4. 19
      src/csharp/Grpc.Core.Testing/Grpc.Core.Testing.csproj
  5. 2
      src/csharp/Grpc.Core.Tests/Grpc.Core.Tests.csproj
  6. 18
      src/csharp/Grpc.Core/Grpc.Core.csproj
  7. 2
      src/csharp/Grpc.Examples.MathClient/Grpc.Examples.MathClient.csproj
  8. 2
      src/csharp/Grpc.Examples.MathServer/Grpc.Examples.MathServer.csproj
  9. 2
      src/csharp/Grpc.Examples.Tests/Grpc.Examples.Tests.csproj
  10. 2
      src/csharp/Grpc.Examples/Grpc.Examples.csproj
  11. 2
      src/csharp/Grpc.HealthCheck.Tests/Grpc.HealthCheck.Tests.csproj
  12. 20
      src/csharp/Grpc.HealthCheck/Grpc.HealthCheck.csproj
  13. 2
      src/csharp/Grpc.IntegrationTesting.Client/Grpc.IntegrationTesting.Client.csproj
  14. 2
      src/csharp/Grpc.IntegrationTesting.QpsWorker/Grpc.IntegrationTesting.QpsWorker.csproj
  15. 2
      src/csharp/Grpc.IntegrationTesting.Server/Grpc.IntegrationTesting.Server.csproj
  16. 2
      src/csharp/Grpc.IntegrationTesting.StressClient/Grpc.IntegrationTesting.StressClient.csproj
  17. 2
      src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj
  18. 2
      src/csharp/Grpc.Microbenchmarks/Grpc.Microbenchmarks.csproj
  19. 2
      src/csharp/Grpc.Reflection.Tests/Grpc.Reflection.Tests.csproj
  20. 18
      src/csharp/Grpc.Reflection/Grpc.Reflection.csproj
  21. 9
      src/csharp/Grpc.Tools/Grpc.Tools.csproj
  22. 18
      src/csharp/Grpc/Grpc.csproj

@ -4,17 +4,19 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2015, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Auth</AssemblyTitle> <Copyright>Copyright 2015 The gRPC Authors</Copyright>
<Description>gRPC C# Authentication Library</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC HTTP/2 Auth OAuth2</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<DefineConstants>$(DefineConstants);SIGNED</DefineConstants> <DefineConstants>$(DefineConstants);SIGNED</DefineConstants>
<AssemblyName>Grpc.Auth</AssemblyName>
<PackageId>Grpc.Auth</PackageId>
<PackageTags>gRPC RPC Protocol HTTP/2 Auth OAuth2</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -4,16 +4,18 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2019, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Surface API</AssemblyTitle> <Copyright>Copyright 2019 The gRPC Authors</Copyright>
<Description>gRPC C# Surface API</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC HTTP/2</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<AssemblyName>Grpc.Core.Api</AssemblyName>
<PackageId>Grpc.Core.Api</PackageId>
<PackageTags>gRPC RPC Protocol HTTP/2</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -4,16 +4,18 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2015, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<Title>Grpc.Core: Native Debug Symbols</Title> <Copyright>Copyright 2015 The gRPC Authors</Copyright>
<Description>Debug symbols for the native library contained in Grpc.Core</Description> <Description>Debug symbols for the native library contained in Grpc.Core</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC HTTP/2</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<PackageId>Grpc.Core.NativeDebug</PackageId>
<PackageTags>gRPC RPC Protocol HTTP/2</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<!-- This package only carries native debug symbols --> <!-- This package only carries native debug symbols -->
<IncludeBuildOutput>false</IncludeBuildOutput> <IncludeBuildOutput>false</IncludeBuildOutput>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>

@ -4,18 +4,19 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2017, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Core Testing</AssemblyTitle> <Description>Miscellaneous code for testing Grpc.Core</Description>
<Copyright>Copyright 2017 The gRPC Authors</Copyright>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC test testing</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Grpc.Core.Testing</AssemblyName>
<PackageId>Grpc.Core.Testing</PackageId>
<PackageTags>gRPC test testing</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Core.Tests</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Core.Tests</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -4,16 +4,18 @@
<Import Project="Common.csproj.include" /> <Import Project="Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2015, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Core</AssemblyTitle> <Copyright>Copyright 2015 The gRPC Authors</Copyright>
<Description>C# implementation of gRPC based on native gRPC C-core library.</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC HTTP/2</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<AssemblyName>Grpc.Core</AssemblyName>
<PackageId>Grpc.Core</PackageId>
<PackageTags>gRPC RPC Protocol HTTP/2</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Examples.MathClient</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Examples.MathClient</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Examples.MathServer</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Examples.MathServer</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Examples.Tests</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Examples.Tests</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,8 +5,6 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Examples</AssemblyName>
<PackageId>Grpc.Examples</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.HealthCheck.Tests</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.HealthCheck.Tests</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -4,16 +4,18 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2015, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Healthchecking</AssemblyTitle> <Copyright>Copyright 2015 The gRPC Authors</Copyright>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <Description>gRPC C# Health Checking (for Grpc.Core)</Description>
<Authors>Google Inc.</Authors> <PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<AssemblyName>Grpc.HealthCheck</AssemblyName>
<PackageId>Grpc.HealthCheck</PackageId>
<PackageTags>gRPC health check</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl> <PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl> <PackageTags>gRPC health check</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.IntegrationTesting.Client</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.IntegrationTesting.Client</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.IntegrationTesting.QpsWorker</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.IntegrationTesting.QpsWorker</PackageId>
<ServerGarbageCollection>true</ServerGarbageCollection> <ServerGarbageCollection>true</ServerGarbageCollection>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.IntegrationTesting.Server</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.IntegrationTesting.Server</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.IntegrationTesting.StressClient</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.IntegrationTesting.StressClient</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.IntegrationTesting</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.IntegrationTesting</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Microbenchmarks</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Microbenchmarks</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -5,9 +5,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks> <TargetFrameworks>net45;netcoreapp1.1</TargetFrameworks>
<AssemblyName>Grpc.Reflection.Tests</AssemblyName>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PackageId>Grpc.Reflection.Tests</PackageId>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -4,16 +4,18 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2016, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<AssemblyTitle>gRPC C# Reflection</AssemblyTitle> <Copyright>Copyright 2016 The gRPC Authors</Copyright>
<Description>gRPC C# Server Reflection (for Grpc.Core)</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC reflection</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<AssemblyName>Grpc.Reflection</AssemblyName>
<PackageId>Grpc.Reflection</PackageId>
<PackageTags>gRPC reflection</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup> </PropertyGroup>

@ -45,17 +45,18 @@
<DevelopmentDependency>true</DevelopmentDependency> <DevelopmentDependency>true</DevelopmentDependency>
<NoPackageAnalysis>true</NoPackageAnalysis> <NoPackageAnalysis>true</NoPackageAnalysis>
<PackageId>Grpc.Tools</PackageId> <PackageId>Grpc.Tools</PackageId>
<Authors>The gRPC Authors</Authors>
<Copyright>Copyright 2018 The gRPC Authors</Copyright>
<Description>gRPC and Protocol Buffer compiler for managed C# and native C++ projects. <Description>gRPC and Protocol Buffer compiler for managed C# and native C++ projects.
Add this package to a project that contains .proto files to be compiled to code. Add this package to a project that contains .proto files to be compiled to code.
It contains the compilers, include files and project system integration for gRPC It contains the compilers, include files and project system integration for gRPC
and Protocol buffer service description files necessary to build them on Windows, and Protocol buffer service description files necessary to build them on Windows,
Linux and MacOS. Managed runtime is supplied separately in the Grpc.Core package.</Description> Linux and MacOS. Managed runtime is supplied separately in the Grpc.Core package.</Description>
<Copyright>Copyright 2018 gRPC authors</Copyright> <PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<Authors>gRPC authors</Authors> <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl> <PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC protocol HTTP/2</PackageTags> <PackageTags>gRPC RPC HTTP/2</PackageTags>
</PropertyGroup> </PropertyGroup>
<ItemGroup Label="NuGet package assets"> <ItemGroup Label="NuGet package assets">

@ -4,16 +4,18 @@
<Import Project="..\Grpc.Core\Common.csproj.include" /> <Import Project="..\Grpc.Core\Common.csproj.include" />
<PropertyGroup> <PropertyGroup>
<Copyright>Copyright 2015, Google Inc.</Copyright> <Authors>The gRPC Authors</Authors>
<Title>gRPC C#</Title> <Copyright>Copyright 2015 The gRPC Authors</Copyright>
<Description>C# implementation of gRPC - an RPC library and framework.</Description> <Description>Metapackage for gRPC C#</Description>
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageTags>gRPC RPC HTTP/2</PackageTags>
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
<Authors>Google Inc.</Authors> </PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> <TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
<PackageId>Grpc</PackageId>
<PackageTags>gRPC RPC Protocol HTTP/2</PackageTags>
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl>
<!-- This is only a metapackage --> <!-- This is only a metapackage -->
<IncludeBuildOutput>false</IncludeBuildOutput> <IncludeBuildOutput>false</IncludeBuildOutput>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>

Loading…
Cancel
Save