Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 12b28a1

Browse files
committed
Add project.json to root folder
1 parent 193120e commit 12b28a1

File tree

4 files changed

+45
-13
lines changed

4 files changed

+45
-13
lines changed

src/ServiceStack.Text.NetCore/ServiceStack.Text/project.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@
1919
"frameworks": {
2020
"netstandard1.1": {
2121
"dependencies" : {
22-
"System.Runtime.Serialization.Primitives" : "4.1.1-*",
23-
"System.Runtime.Serialization.Xml" : "4.1.1",
24-
"System.Net.Requests" : "4.0.11",
25-
"System.Dynamic.Runtime" : "4.0.11",
26-
"Microsoft.CSharp" : "4.0.1-*",
27-
"System.Reflection.Emit" : "4.0.1",
22+
"System.Runtime.Serialization.Primitives" : "4.1.1-*",
23+
"System.Runtime.Serialization.Xml" : "4.1.1",
24+
"System.Net.Requests" : "4.0.11",
25+
"System.Dynamic.Runtime" : "4.0.11",
26+
"Microsoft.CSharp" : "4.0.1-*",
27+
"System.Reflection.Emit" : "4.0.1"
2828
}
2929
}
30-
3130
},
3231
"version": "1.0.0"
3332
}

src/ServiceStack.Text/ServiceStack.Text.nuget.targets

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"frameworks": {
3+
"net45": {}
4+
},
5+
"runtimes": {
6+
"win": {}
7+
}
8+
}

src/ServiceStack.Text/project.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"configurations": {
3+
"Debug": {
4+
"buildOptions": {
5+
"define": [ "DEBUG", "TRACE" ]
6+
}
7+
},
8+
"Release": {
9+
"buildOptions": {
10+
"define": [ "TRACE" ],
11+
"optimize": true
12+
}
13+
}
14+
},
15+
"dependencies": {
16+
"NETStandard.Library": "1.6.0"
17+
},
18+
"frameworks": {
19+
"netstandard1.1": {
20+
"dependencies": {
21+
"System.Runtime.Serialization.Primitives": "4.1.1-*",
22+
"System.Runtime.Serialization.Xml": "4.1.1",
23+
"System.Net.Requests": "4.0.11",
24+
"System.Dynamic.Runtime": "4.0.11",
25+
"Microsoft.CSharp": "4.0.1-*",
26+
"System.Reflection.Emit": "4.0.1"
27+
}
28+
}
29+
},
30+
"version": "1.0.0"
31+
}

0 commit comments

Comments
 (0)