aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/project.json
blob: aa1e4cc7fb9c9e69ef0d8549d7f36c381bb85c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "version": "1.1.0-dev",
  "title": "gRPC C# Core",
  "authors": [ "Google Inc." ],
  "copyright": "Copyright 2015, Google Inc.",
  "packOptions": {
    "summary": "Core C# implementation of gRPC - an RPC library and framework",
    "description": "Core C# implementation of gRPC - an RPC library and framework. See project site for more info.",
    "owners": [ "grpc-packages" ],
    "licenseUrl": "https://github.com/grpc/grpc/blob/master/LICENSE",
    "projectUrl": "https://github.com/grpc/grpc",
    "requireLicenseAcceptance": false,
    "tags": [ "gRPC RPC Protocol HTTP/2" ],
    "files": {
      "mappings": {
        "build/net45/": "Grpc.Core.targets",
        "runtimes/win/native/grpc_csharp_ext.x86.dll": "../nativelibs/windows_x86/grpc_csharp_ext.dll",
        "runtimes/win/native/grpc_csharp_ext.x64.dll": "../nativelibs/windows_x64/grpc_csharp_ext.dll",
        "runtimes/linux/native/libgrpc_csharp_ext.x86.so": "../nativelibs/linux_x86/libgrpc_csharp_ext.so",
        "runtimes/linux/native/libgrpc_csharp_ext.x64.so": "../nativelibs/linux_x64/libgrpc_csharp_ext.so",
        "runtimes/osx/native/libgrpc_csharp_ext.x86.dylib": "../nativelibs/macosx_x86/libgrpc_csharp_ext.dylib",
        "runtimes/osx/native/libgrpc_csharp_ext.x64.dylib": "../nativelibs/macosx_x64/libgrpc_csharp_ext.dylib"
      }
    }
  },
  "buildOptions": {
    "embed": [ "../../../etc/roots.pem" ],
    "define": [ "SIGNED" ],
    "keyFile": "../keys/Grpc.snk",
    "publicSign": true,
    "xmlDoc": true
  },
  "dependencies": {
    "System.Interactive.Async": "3.0.0"
  },
  "frameworks": {
    "net45": { },
    "netstandard1.5": {
      "dependencies": {
        "NETStandard.Library": "1.6.0",
        "System.Runtime.Loader": "4.0.0",
        "System.Threading.Thread": "4.0.0"
      }
    }
  }
}