aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Auth/project.json
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-04-11 20:55:44 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-14 12:52:05 -0700
commitec4359ddc1b905b12784babfcb4cebb3a1e67478 (patch)
treea0c8a896cd08e27d01fd7e168c46e3a077942827 /src/csharp/Grpc.Auth/project.json
parente697b7dbc6ad97e570334fecd2dd1cccaa83aa1a (diff)
add support for CoreCLR
Diffstat (limited to 'src/csharp/Grpc.Auth/project.json')
-rw-r--r--src/csharp/Grpc.Auth/project.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/csharp/Grpc.Auth/project.json b/src/csharp/Grpc.Auth/project.json
new file mode 100644
index 0000000000..513325f749
--- /dev/null
+++ b/src/csharp/Grpc.Auth/project.json
@@ -0,0 +1,35 @@
+{
+ "version": "0.14.0-anexperiment",
+
+ "title": "gRPC C# Auth",
+ "summary": "Auth library for C# implementation of gRPC - an RPC library and framework",
+ "description": "Auth library for C# implementation of gRPC - an RPC library and framework. See project site for more info.",
+ "authors": ["Google Inc."],
+ "owners": ["grpc-packages"],
+ "licenseUrl": "https://github.com/grpc/grpc/blob/master/LICENSE",
+ "projectUrl": "https://github.com/grpc/grpc",
+ "requireLicenseAcceptance": false,
+ "copyright": "Copyright 2015, Google Inc.",
+ "tags": ["gRPC RPC Protocol HTTP/2 Auth OAuth2"],
+
+ "compile": "**/*.cs",
+ "resourceFiles": ["../../../etc/roots.pem"],
+
+ "dependencies": {
+ "Grpc.Core": "0.14.0-anexperiment",
+ "Google.Apis.Auth": "1.11.1"
+ },
+ "frameworks": {
+ "net45": { },
+ "dotnet54": {
+ "imports": [
+ "net45"
+ ],
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta-23516",
+ "Microsoft.NETCore.Portable.Compatibility": "1.0.1-beta-23516",
+ "System.Threading.Tasks": "4.0.11-beta-23516"
+ }
+ }
+ }
+}