From 4e40db0e46e3e95ddaf05e2880f8d0fca7b8cd9b Mon Sep 17 00:00:00 2001 From: Jan Tattermusch <jtattermusch@google.com> Date: Fri, 20 Feb 2015 13:48:35 -0800 Subject: [PATCH] added NuGet package specifications --- src/csharp/Grpc.Core/Grpc.Core.nuspec | 23 +++++++++++++++++++++++ src/csharp/Grpc.nuspec | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 src/csharp/Grpc.Core/Grpc.Core.nuspec create mode 100644 src/csharp/Grpc.nuspec diff --git a/src/csharp/Grpc.Core/Grpc.Core.nuspec b/src/csharp/Grpc.Core/Grpc.Core.nuspec new file mode 100644 index 0000000000..af8a8869ca --- /dev/null +++ b/src/csharp/Grpc.Core/Grpc.Core.nuspec @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<package > + <metadata> + <id>Grpc.Core</id> + <title>gRPC Core</title> + <summary>Core C# implementation of gRPC - an RPC library and framework</summary> + <description>Core C# implementation of gRPC - an RPC library and framework. See project site for more info. + This is an experimental release, not ready to use. + </description> + <version>0.1.0</version> + <authors>Google Inc.</authors> + <owners>jtattermusch</owners> + <licenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</licenseUrl> + <projectUrl>https://github.com/grpc/grpc</projectUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <releaseNotes>The first experimental release. Not ready to use.</releaseNotes> + <copyright>Copyright 2015, Google Inc.</copyright> + <tags>gRPC RPC Protocol HTTP/2</tags> + </metadata> + <files> + <file src="bin/Release/Grpc.Core.dll" target="lib/net45" /> + </files> +</package> diff --git a/src/csharp/Grpc.nuspec b/src/csharp/Grpc.nuspec new file mode 100644 index 0000000000..96a6aaf6b7 --- /dev/null +++ b/src/csharp/Grpc.nuspec @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<package > + <metadata> + <id>Grpc</id> + <title>gRPC</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. + This is an experimental release, not ready to use. + </description> + <version>0.1.0</version> + <authors>Google Inc.</authors> + <owners>jtattermusch</owners> + <licenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</licenseUrl> + <projectUrl>https://github.com/grpc/grpc</projectUrl> + <requireLicenseAcceptance>false</requireLicenseAcceptance> + <releaseNotes>The first experimental release. Not ready to use.</releaseNotes> + <copyright>Copyright 2015, Google Inc.</copyright> + <tags>gRPC RPC Protocol HTTP/2</tags> + <dependencies> + <dependency id="Grpc.Core" version="0.1.0" /> + </dependencies> + </metadata> +</package> -- GitLab