Skip to content

Commit 81187e2

Browse files
committed
Add all frameworkAssemblies as build time dependencies
1 parent c21140a commit 81187e2

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

src/Elasticsearch.Net/project.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@
6060
]
6161
},
6262
"frameworkAssemblies": {
63-
"System": "",
63+
"System": {
64+
"type": "build"
65+
},
6466
"System.Runtime": {
6567
"type": "build"
6668
},
@@ -76,7 +78,9 @@
7678
]
7779
},
7880
"frameworkAssemblies": {
79-
"System": "",
81+
"System": {
82+
"type": "build"
83+
},
8084
"System.Runtime": {
8185
"type": "build"
8286
},

src/Nest/project.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,18 @@
6464
]
6565
},
6666
"frameworkAssemblies": {
67-
"System.Dynamic.Runtime": "",
67+
"System.Dynamic.Runtime": {
68+
"type": "build"
69+
},
6870
"System.Runtime": {
6971
"type": "build"
7072
},
7173
"System.Runtime.Serialization": {
7274
"type": "build"
7375
},
74-
"System.ServiceModel": ""
76+
"System.ServiceModel": {
77+
"type": "build"
78+
}
7579
}
7680
},
7781
"net45": {
@@ -81,14 +85,18 @@
8185
]
8286
},
8387
"frameworkAssemblies": {
84-
"System.Dynamic.Runtime": "",
88+
"System.Dynamic.Runtime": {
89+
"type": "build"
90+
},
8591
"System.Runtime": {
8692
"type": "build"
8793
},
8894
"System.Runtime.Serialization": {
8995
"type": "build"
9096
},
91-
"System.ServiceModel": ""
97+
"System.ServiceModel": {
98+
"type": "build"
99+
}
92100
}
93101
},
94102
"dotnet5.1": {

0 commit comments

Comments
 (0)