forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
70 lines (70 loc) · 1.48 KB
/
project.json
File metadata and controls
70 lines (70 loc) · 1.48 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"configurations": {
"Debug": {
"buildOptions": {
"define": [
"DEBUG",
"TRACE"
],
"compile": {
"include": [
"../../ServiceStack.Interfaces/**/*.cs"
]
}
}
},
"Release": {
"buildOptions": {
"define": [
"TRACE"
],
"optimize": true,
"compile": {
"include": [
"../../ServiceStack.Interfaces/**/*.cs"
]
}
}
}
},
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1"
}
},
".NETPortable,Version=v4.5,Profile=Profile7": {
"buildOptions": {
"define": [
"NETSTANDARD1_1"
]
},
"frameworkAssemblies": {
"System.Runtime.Serialization.Primitives": "4.0.0",
"System.Runtime.Serialization.Xml": "4.0.0",
"System.Net.Requests": "4.0.0",
"System.Dynamic.Runtime": "4.0.0",
"Microsoft.CSharp": "4.0.0"
}
},
".NETPortable,Version=v4.0,Profile=Profile344": {
"buildOptions": {
"define": [
"PCL"
]
},
"frameworkAssemblies": {
"mscorlib": "",
"System": "",
"System.Core": "",
"System.Net": "",
"System.Runtime.Serialization": ""
}
}
},
"version": "1.0.0"
}