aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/project.json
blob: 87b732c9b56e17dc7fd91e495eb5a4d6a3280d1e (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
{
  "buildOptions": {
    "debugType": "portable",
    "keyFile": "../../keys/Google.Protobuf.snk"
  },

  "configurations": {
    "Debug": {
      "buildOptions": {
        "define": [ "DEBUG", "TRACE" ]
      }
    },
    "Release": {
      "buildOptions": {
        "define": [ "RELEASE", "TRACE" ],
        "optimize": true
      }
    }
  },

  "dependencies": {
    "Google.Protobuf": { "target": "project" },
    "NUnit": "3.4.0",
    "dotnet-test-nunit": "3.4.0-alpha-2",
  },

  "testRunner": "nunit",

  "frameworks": {
    "netcoreapp1.0": {
      "imports" : [ "dnxcore50", "netcoreapp1.0", "portable-net45+win8" ],
      "buildOptions": {
        "define": [ "PCL" ]
      },
      "dependencies": {
        "Microsoft.NETCore.App": { 
          "version": "1.0.0",
          "type": "platform"
        },
        "System.Console": "4.0.0"
      }
    }
  }
}