Skip to content

Commit a1540bf

Browse files
committed
Made full framework references build time dependencies
1 parent 0ce1313 commit a1540bf

File tree

7 files changed

+63
-21
lines changed

7 files changed

+63
-21
lines changed

src/Exceptionless.Tests/project.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,12 @@
2727
"define": [ "NET46" ]
2828
},
2929
"frameworkAssemblies": {
30-
"System.Threading.Tasks": "",
31-
"System.Runtime": ""
30+
"System.Threading.Tasks": {
31+
"type": "build"
32+
},
33+
"System.Runtime": {
34+
"type": "build"
35+
}
3236
}
3337
}
3438
}

src/Exceptionless/project.json

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -284,15 +284,33 @@
284284
"define": [ "NET45" ]
285285
},
286286
"frameworkAssemblies": {
287-
"Microsoft.VisualBasic": "",
288-
"System.Configuration": "",
289-
"System.Data": "",
290-
"System.Net.Http": "",
291-
"System.Net.Http.WebRequest": "",
292-
"System.Numerics": "",
293-
"System.Runtime.Serialization": "",
294-
"System.Xml": "",
295-
"System.Xml.Linq": ""
287+
"Microsoft.VisualBasic": {
288+
"type": "build"
289+
},
290+
"System.Configuration": {
291+
"type": "build"
292+
},
293+
"System.Data": {
294+
"type": "build"
295+
},
296+
"System.Net.Http": {
297+
"type": "build"
298+
},
299+
"System.Net.Http.WebRequest": {
300+
"type": "build"
301+
},
302+
"System.Numerics": {
303+
"type": "build"
304+
},
305+
"System.Runtime.Serialization": {
306+
"type": "build"
307+
},
308+
"System.Xml": {
309+
"type": "build"
310+
},
311+
"System.Xml.Linq": {
312+
"type": "build"
313+
}
296314
}
297315
}
298316
}

src/Platforms/Exceptionless.AspNetCore/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
"define": [ "NET45" ]
5555
},
5656
"frameworkAssemblies": {
57-
"System.Net.Primitives": ""
57+
"System.Net.Primitives": {
58+
"type": "build"
59+
}
5860
}
5961
}
6062
}

src/Platforms/Exceptionless.Log4net/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
"define": [ "NET45" ]
4141
},
4242
"frameworkAssemblies": {
43-
"System.Configuration": ""
43+
"System.Configuration": {
44+
"type": "build"
45+
}
4446
}
4547
}
4648
}

src/Platforms/Exceptionless.Mvc/project.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,12 @@
5252
"define": [ "NET45" ]
5353
},
5454
"frameworkAssemblies": {
55-
"System.Configuration": "",
56-
"System.Web": ""
55+
"System.Configuration": {
56+
"type": "build"
57+
},
58+
"System.Web": {
59+
"type": "build"
60+
}
5761
}
5862
}
5963
}

src/Platforms/Exceptionless.Web/project.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,15 @@
4343
"define": [ "NET45" ]
4444
},
4545
"frameworkAssemblies": {
46-
"System.Configuration": "",
47-
"System.ServiceModel": "",
48-
"System.Web": ""
46+
"System.Configuration": {
47+
"type": "build"
48+
},
49+
"System.ServiceModel": {
50+
"type": "build"
51+
},
52+
"System.Web": {
53+
"type": "build"
54+
}
4955
}
5056
}
5157
}

src/Platforms/Exceptionless.WebApi/project.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,15 @@
4444
"define": [ "NET45" ]
4545
},
4646
"frameworkAssemblies": {
47-
"System.Configuration": "",
48-
"System.Net.Http": "",
49-
"System.ServiceModel": ""
47+
"System.Configuration": {
48+
"type": "build"
49+
},
50+
"System.Net.Http": {
51+
"type": "build"
52+
},
53+
"System.ServiceModel": {
54+
"type": "build"
55+
}
5056
}
5157
}
5258
}

0 commit comments

Comments
 (0)