Skip to content

Commit 4217ece

Browse files
committed
[dotnet] Add runtime packs to workload manifests
Runtime pack entries should be included in all workload manifest files, even though they will not yet be resolved from the packs folder due to dotnet/sdk#14044. These changes will also allow us to start producing .msi files for the runtime packs for an eventual inclusion in the Visual Studio installer.
1 parent 2af23db commit 4217ece

4 files changed

+50
-0
lines changed

dotnet/targets/WorkloadManifest.MacCatalyst.template.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"packs": [
77
"Microsoft.@[email protected]",
88
"Microsoft.@[email protected]",
9+
"Microsoft.@[email protected]",
10+
"Microsoft.@[email protected]",
911
"Microsoft.@[email protected]"
1012
],
1113
"extends": [
@@ -22,6 +24,14 @@
2224
"kind": "framework",
2325
"version": "@VERSION@"
2426
},
27+
"Microsoft.@[email protected]": {
28+
"kind": "framework",
29+
"version": "@VERSION@"
30+
},
31+
"Microsoft.@[email protected]": {
32+
"kind": "framework",
33+
"version": "@VERSION@"
34+
},
2535
"Microsoft.@[email protected]": {
2636
"kind": "template",
2737
"version": "@VERSION@"

dotnet/targets/WorkloadManifest.iOS.template.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
"Microsoft.@[email protected]",
88
"Microsoft.@[email protected]",
99
"Microsoft.@[email protected]",
10+
"Microsoft.@[email protected]",
11+
"Microsoft.@[email protected]",
12+
"Microsoft.@[email protected]",
13+
"Microsoft.@[email protected]",
1014
"Microsoft.@[email protected]"
1115
],
1216
"extends": [
@@ -27,6 +31,22 @@
2731
"kind": "framework",
2832
"version": "@VERSION@"
2933
},
34+
"Microsoft.@[email protected]": {
35+
"kind": "framework",
36+
"version": "@VERSION@"
37+
},
38+
"Microsoft.@[email protected]": {
39+
"kind": "framework",
40+
"version": "@VERSION@"
41+
},
42+
"Microsoft.@[email protected]": {
43+
"kind": "framework",
44+
"version": "@VERSION@"
45+
},
46+
"Microsoft.@[email protected]": {
47+
"kind": "framework",
48+
"version": "@VERSION@"
49+
},
3050
"Microsoft.@[email protected]": {
3151
"kind": "template",
3252
"version": "@VERSION@"

dotnet/targets/WorkloadManifest.macOS.template.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"packs": [
77
"Microsoft.@[email protected]",
88
"Microsoft.@[email protected]",
9+
"Microsoft.@[email protected]",
10+
"Microsoft.@[email protected]",
911
"Microsoft.@[email protected]"
1012
],
1113
"extends": [
@@ -22,6 +24,14 @@
2224
"kind": "framework",
2325
"version": "@VERSION@"
2426
},
27+
"Microsoft.@[email protected]": {
28+
"kind": "framework",
29+
"version": "@VERSION@"
30+
},
31+
"Microsoft.@[email protected]": {
32+
"kind": "framework",
33+
"version": "@VERSION@"
34+
},
2535
"Microsoft.@[email protected]": {
2636
"kind": "template",
2737
"version": "@VERSION@"

dotnet/targets/WorkloadManifest.tvOS.template.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
"packs": [
77
"Microsoft.@[email protected]",
88
"Microsoft.@[email protected]",
9+
"Microsoft.@[email protected]",
10+
"Microsoft.@[email protected]",
911
"Microsoft.@[email protected]"
1012
],
1113
"extends": [
@@ -22,6 +24,14 @@
2224
"kind": "framework",
2325
"version": "@VERSION@"
2426
},
27+
"Microsoft.@[email protected]": {
28+
"kind": "framework",
29+
"version": "@VERSION@"
30+
},
31+
"Microsoft.@[email protected]": {
32+
"kind": "framework",
33+
"version": "@VERSION@"
34+
},
2535
"Microsoft.@[email protected]": {
2636
"kind": "template",
2737
"version": "@VERSION@"

0 commit comments

Comments
 (0)