forked from Azure/autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
50 lines (45 loc) · 1.68 KB
/
project.json
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
47
48
49
50
{
"version": "0.17.0-*",
"authors": [ "Microsoft" ],
"buildOptions": {
"delaySign": true,
"publicSign": false,
"keyFile": "../../../Tools/MSSharedLibKey.snk",
"copyToOutput": {
"include": ["Resource"],
}
},
"packOptions": {
"summary": "Autorest Core Tests",
"tags": [ "Microsoft AutoRest " ],
"projectUrl": "https://github.com/Azure/AutoRest",
"licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE"
},
"testRunner": "xunit",
"frameworks": {
"net451": {
}
},
"dependencies": {
"xunit": "2.2.0-beta2-build3300",
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Newtonsoft.Json": "[9.0.1,10.0)",
"AutoRest.Core": {
"target": "project"
},
"AutoRest.Swagger": { "target": "project", "type": "build" },
"AutoRest.CompositeSwagger": { "target": "project", "type": "build" },
"AutoRest.CSharp": { "target": "project", "type": "build" },
"AutoRest.CSharp.Azure": { "target": "project", "type": "build" },
"AutoRest.Java.Azure": { "target": "project", "type": "build" },
"AutoRest.NodeJS.Azure": { "target": "project", "type": "build" },
"AutoRest.Python.Azure": { "target": "project", "type": "build" },
"AutoRest.Ruby.Azure": { "target": "project", "type": "build" },
"AutoRest.AzureResourceSchema": { "target": "project", "type": "build" },
"AutoRest.CSharp": { "target": "project", "type": "build" },
"AutoRest.Java": { "target": "project", "type": "build" },
"AutoRest.NodeJS": { "target": "project", "type": "build" },
"AutoRest.Python": { "target": "project", "type": "build" },
"AutoRest.Ruby": { "target": "project", "type": "build" }
}
}