aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/csharp/helloworld-from-cli/GreeterClient/project.json
blob: 74962a90e90e538158f4a9df4710d451521d9c30 (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
{
  "title": "GreeterClient",
  "version": "1.0.0-*",
  "buildOptions": {
    "debugType": "portable",
    "emitEntryPoint": "true"
  },
  "dependencies": {
    "Google.Protobuf": "3.0.0",
    "Grpc": "1.0.0",
    "Greeter": {
      "target": "project"
    }
  },
  "frameworks": {
    "net45": {
      "frameworkAssemblies": {
        "System.Runtime": "",
        "System.IO": ""
      },
      "dependencies": {
	"Microsoft.NETCore.Platforms": "1.0.1" 
      }
    }
  }
}