forked from ServiceStack/ServiceStack.OrmLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathproject.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"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.OrmLite" : "1.0.*",
"ServiceStack.Text" : "1.0.*",
"ServiceStack.Client" : "1.0.*",
"ServiceStack.OrmLite.PostgreSQL" : "1.0.*",
"ServiceStack.OrmLite.Tests" : "1.0.*"
},
"frameworks": {
"netcoreapp1.1": {
"imports": "dnxcore50",
"dependencies" : {
"System.Runtime" : "4.*",
"System.Runtime.Serialization.Xml" : "4.*",
"System.Reflection" : "4.*",
"System.Reflection.Primitives" : "4.*",
"System.Runtime.Serialization.Primitives": "4.*",
"System.Threading.Thread" : "4.*"
}
}
}
}