From cdd82c469e341e76cc594bc21a10825d80b889e0 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch <jtattermusch@google.com> Date: Fri, 29 May 2015 13:01:11 -0700 Subject: [PATCH] fixes to Grpc nuget package --- src/csharp/Grpc.Tools.nuspec | 22 ++++++++++++++++++++++ src/csharp/Grpc.nuspec | 7 ++----- src/csharp/build_packages.bat | 1 + 3 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 src/csharp/Grpc.Tools.nuspec diff --git a/src/csharp/Grpc.Tools.nuspec b/src/csharp/Grpc.Tools.nuspec new file mode 100644 index 0000000000..155c2ef8c4 --- /dev/null +++ b/src/csharp/Grpc.Tools.nuspec @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<package> + <metadata> + <id>Grpc.Tools</id> + <title>gRPC C# Tools</title> + <summary>Tools for C# implementation of gRPC - an RPC library and framework</summary> + <description>Precompiled Windows binaries for generating protocol buffer messages and gRPC client/server code</description> + <version>0.5.0</version> + <authors>Google Inc.</authors> + <owners>grpc-packages</owners> + <licenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</licenseUrl> + <projectUrl>https://github.com/grpc/grpc</projectUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <releaseNotes>protoc.exe - protocol buffer compiler v3.0.0-alpha-3; grpc_csharp_plugin.exe - gRPC C# protoc plugin version 0.5.0</releaseNotes> + <copyright>Copyright 2015, Google Inc.</copyright> + <tags>gRPC RPC Protocol HTTP/2</tags> + </metadata> + <files> + <file src="protoc.exe" target="tools" /> + <file src="grpc_csharp_plugin.exe" target="tools" /> + </files> +</package> diff --git a/src/csharp/Grpc.nuspec b/src/csharp/Grpc.nuspec index b9a76f2c1a..263e016339 100644 --- a/src/csharp/Grpc.nuspec +++ b/src/csharp/Grpc.nuspec @@ -5,7 +5,7 @@ <title>gRPC C#</title> <summary>C# implementation of gRPC - an RPC library and framework</summary> <description>C# implementation of gRPC - an RPC library and framework. See project site for more info.</description> - <version>0.5.0</version> + <version>0.5.0.1</version> <authors>Google Inc.</authors> <owners>grpc-packages</owners> <licenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</licenseUrl> @@ -18,8 +18,5 @@ <dependency id="Grpc.Core" version="0.5.0" /> </dependencies> </metadata> - <files> - <file src="protoc.exe" target="tools" /> - <file src="grpc_csharp_plugin.exe" target="tools" /> - </files> + <files/> </package> diff --git a/src/csharp/build_packages.bat b/src/csharp/build_packages.bat index 7cb78bddf4..3412129fb2 100644 --- a/src/csharp/build_packages.bat +++ b/src/csharp/build_packages.bat @@ -13,6 +13,7 @@ endlocal %NUGET% pack ..\..\vsprojects\nuget_package\grpc.native.csharp_ext.nuspec || goto :error %NUGET% pack Grpc.Core\Grpc.Core.nuspec -Symbols || goto :error %NUGET% pack Grpc.Auth\Grpc.Auth.nuspec -Symbols || goto :error +%NUGET% pack Grpc.Tools.nuspec || goto :error %NUGET% pack Grpc.nuspec || goto :error goto :EOF -- GitLab