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

Commit 18d6f47

Browse files
committed
Added XML comment generation for Core projects
1 parent 1dfcac2 commit 18d6f47

4 files changed

Lines changed: 33 additions & 30 deletions

File tree

src/ServiceStack.Common/project.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22
"configurations": {
33
"Debug": {
44
"buildOptions": {
5-
"define": ["DEBUG", "TRACE"]
5+
"define": [ "DEBUG", "TRACE" ]
66
}
77
},
88
"Release": {
99
"buildOptions": {
10-
"define": ["TRACE"],
11-
"optimize": true
10+
"define": [ "TRACE" ],
11+
"optimize": true,
12+
"xmlDoc": true
1213
}
1314
}
1415
},
1516
"dependencies": {
1617
"NETStandard.Library": "1.6.0",
1718
"ServiceStack.Interfaces" : "1.0.*",
18-
"ServiceStack.Text" : "1.0.*"
19+
"ServiceStack.Text" : "1.0.*"
1920
},
2021
"frameworks": {
21-
"netstandard1.3": {
22-
"buildOptions" : {
23-
"define": ["NETSTANDARD1_1"]
24-
},
22+
"netstandard1.3": {
23+
"buildOptions" : {
24+
"define": ["NETSTANDARD1_1"]
25+
},
2526
"dependencies" : {
2627
},
27-
"bin" : { "assembly":"../../lib/netstandard1.3/ServiceStack.Common.dll", "pdb" : "../../lib/netstandard1.3/ServiceStack.Common.pdb" }
28+
"bin" : { "assembly":"../../lib/netstandard1.3/ServiceStack.Common.dll", "pdb" : "../../lib/netstandard1.3/ServiceStack.Common.pdb" }
2829
}
29-
3030
},
3131
"version": "1.0.0"
3232
}

src/ServiceStack.Redis/project.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"configurations": {
33
"Debug": {
44
"buildOptions": {
5-
"define": ["DEBUG", "TRACE"]
5+
"define": [ "DEBUG", "TRACE" ]
66
}
77
},
88
"Release": {
99
"buildOptions": {
10-
"define": ["TRACE"],
11-
"optimize": true
10+
"define": [ "TRACE" ],
11+
"optimize": true,
12+
"xmlDoc": true
1213
}
1314
}
1415
},
@@ -29,7 +30,7 @@
2930
"System.Threading.Thread": "4.0.0"
3031
}
3132
}
32-
33+
3334
},
3435
"version": "1.0.0"
3536
}

src/ServiceStack.Text/project.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,30 @@
22
"configurations": {
33
"Debug": {
44
"buildOptions": {
5-
"define": ["DEBUG", "TRACE"]
5+
"define": [ "DEBUG", "TRACE" ]
66
}
77
},
88
"Release": {
99
"buildOptions": {
10-
"define": ["TRACE"],
11-
"optimize": true
10+
"define": [ "TRACE" ],
11+
"optimize": true,
12+
"xmlDoc": true
1213
}
1314
}
1415
},
1516
"dependencies": {
1617
"NETStandard.Library": "1.6.0"
1718
},
1819
"frameworks": {
19-
"netstandard1.1": {
20+
"netstandard1.1": {
2021
"dependencies" : {
2122
},
22-
"bin" : { "assembly":"../../lib/netstandard1.1/ServiceStack.Text.dll", "pdb" : "../../lib/netstandard1.1/ServiceStack.Text.pdb" }
23+
"bin" : { "assembly":"../../lib/netstandard1.1/ServiceStack.Text.dll", "pdb" : "../../lib/netstandard1.1/ServiceStack.Text.pdb" }
2324
},
24-
"netstandard1.3": {
25+
"netstandard1.3": {
2526
"dependencies" : {
2627
},
27-
"bin" : { "assembly":"../../lib/netstandard1.3/ServiceStack.Text.dll", "pdb" : "../../lib/netstandard1.3/ServiceStack.Text.pdb" }
28+
"bin" : { "assembly":"../../lib/netstandard1.3/ServiceStack.Text.dll", "pdb" : "../../lib/netstandard1.3/ServiceStack.Text.pdb" }
2829
}
2930
},
3031
"version": "1.0.0"

src/ServiceStack/project.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,27 @@
22
"configurations": {
33
"Debug": {
44
"buildOptions": {
5-
"define": ["DEBUG", "TRACE"]
5+
"define": [ "DEBUG", "TRACE" ]
66
}
77
},
88
"Release": {
99
"buildOptions": {
10-
"define": ["TRACE"],
11-
"optimize": true
10+
"define": [ "TRACE" ],
11+
"optimize": true,
12+
"xmlDoc": true
1213
}
1314
}
1415
},
1516
"dependencies": {
1617
"NETStandard.Library": "1.6.0"
1718
},
1819
"frameworks": {
19-
"netstandard1.6": {
20-
"bin" : {
21-
"assembly":"../../lib/tests/netstandard1.6/ServiceStack.dll",
22-
"pdb" : "../../lib/tests/netstandard1.6/ServiceStack.pdb"
23-
}
24-
}
20+
"netstandard1.6": {
21+
"bin": {
22+
"assembly": "../../lib/tests/netstandard1.6/ServiceStack.dll",
23+
"pdb": "../../lib/tests/netstandard1.6/ServiceStack.pdb"
24+
}
25+
}
2526
},
2627
"version": "1.0.0"
2728
}

0 commit comments

Comments
 (0)