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
39 lines (39 loc) · 856 Bytes
/
project.json
File metadata and controls
39 lines (39 loc) · 856 Bytes
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
{
"configurations": {
"Debug": {
"buildOptions": {
"define": ["NETCORE_SUPPORT", "NETCORE", "DEBUG", "TRACE"]
}
},
"Release": {
"buildOptions": {
"define": ["NETCORE_SUPPORT", "NETCORE", "TRACE"],
"optimize": true
}
}
},
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0"
},
"NUnitLite" : "3.5.0",
"ServiceStack.Interfaces" : "1.0.*",
"ServiceStack.Text" : "1.0.*",
"ServiceStack.Common" : "1.0.*",
"ServiceStack.Client" : "1.0.*",
"ServiceStack": "1.0.*"
},
"frameworks": {
"netcoreapp1.1": {
"imports": "dnxcore50",
"dependencies" : {
"System.Reflection.TypeExtensions": "4.*"
}
}
}
}