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
51 lines (51 loc) · 1.32 KB
/
Copy pathproject.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"configurations": {
"Debug": {
"buildOptions": {
"define": ["NETCORE_SUPPORT", "NETCORE", "DEBUG", "TRACE"]
}
},
"Release": {
"buildOptions": {
"define": ["NETCORE_SUPPORT", "NETCORE", "TRACE"],
"optimize": true
}
}
},
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true
},
"exclude": ["RawRequestTests.cs"],
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0"
},
"NUnitLite" : "3.5.0",
"AWSSDK.Core": "3.3.0.2",
"AWSSDK.DynamoDBv2": "3.3.0",
"ServiceStack.Interfaces" : "1.0.*",
"ServiceStack.Text" : "1.0.*",
"ServiceStack.Common" : "1.0.*",
"ServiceStack.Client" : "1.0.*",
"ServiceStack.HttpClient": "1.0.*",
"ServiceStack.Server": "1.0.*",
"ServiceStack": "1.0.*",
"ServiceStack.Kestrel": "1.0.*",
"ServiceStack.OrmLite": "1.0.*",
"ServiceStack.OrmLite.Sqlite": "1.0.*",
"ServiceStack.OrmLite.SqlServer": "1.0.*",
"ServiceStack.RabbitMq": "1.0.*",
"ServiceStack.Aws": "1.0.*"
},
"frameworks": {
"netcoreapp1.1": {
"imports": "dnxcore50",
"dependencies" : {
"System.Threading": "4.*",
"System.Reflection.TypeExtensions": "4.*"
}
}
}
}