aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/csharp/Grpc.Core.Testing/project.json.template
blob: 7aff9911455467a5132edbb3dd7dc77fae71ffe5 (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
%YAML 1.2
--- |
  {
    "version": "${settings.csharp_version}",
    "title": "gRPC C# Core Testing",
    "authors": [ "Google Inc." ],
    "copyright": "Copyright 2017, Google Inc.",
    "packOptions": {
      "summary": "Testing support for gRPC C#",
      "description": "Useful when testing code that uses gRPC.",
      "owners": [ "grpc-packages" ],
      "licenseUrl": "https://github.com/grpc/grpc/blob/master/LICENSE",
      "projectUrl": "https://github.com/grpc/grpc",
      "requireLicenseAcceptance": false,
      "tags": [ "gRPC test testing" ]
    },
    "buildOptions": {
      "define": [ "SIGNED" ],
      "keyFile": "../keys/Grpc.snk",
      "xmlDoc": true,
      "compile": {
        "includeFiles": [ "../Grpc.Core/Version.cs" ]
      }
    },
    "dependencies": {
      "Grpc.Core": "${settings.csharp_version}"
    },
    "frameworks": {
      "net45": {
        "frameworkAssemblies": {
          "System.Runtime": "",
          "System.IO": ""
        }
      },
      "netstandard1.5": {
        "dependencies": {
          "NETStandard.Library": "1.6.0"
        }
      }
    }
  }