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