Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 208a9a6

Browse files
committed
Merge pull request #4565 from ellismg/port-runtime-json-to-rc1
Add RIDs for OSX 10.11, OS.version, OSfamily-arch
2 parents ce10234 + 6063b13 commit 208a9a6

File tree

1 file changed

+248
-0
lines changed

1 file changed

+248
-0
lines changed
Lines changed: 248 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,248 @@
1+
{
2+
"runtimes": {
3+
"base": {
4+
},
5+
6+
"any": {
7+
"#import": [ "base" ]
8+
},
9+
10+
"win": {
11+
"#import": [ "any" ]
12+
},
13+
"win-x86": {
14+
"#import": [ "win" ]
15+
},
16+
"win-x64": {
17+
"#import": [ "win" ]
18+
},
19+
20+
"win7": {
21+
"#import": [ "win" ]
22+
},
23+
"win7-x86": {
24+
"#import": [ "win7", "win-x86" ]
25+
},
26+
"win7-x64": {
27+
"#import": [ "win7", "win-x64" ]
28+
},
29+
30+
"win8": {
31+
"#import": [ "win7" ]
32+
},
33+
"win8-x86": {
34+
"#import": [ "win8", "win7-x86" ]
35+
},
36+
"win8-x64": {
37+
"#import": [ "win8", "win7-x64" ]
38+
},
39+
"win8-arm": {
40+
"#import": [ "win8" ]
41+
},
42+
43+
"win81": {
44+
"#import": [ "win8" ]
45+
},
46+
"win81-x86": {
47+
"#import": [ "win81", "win8-x86" ]
48+
},
49+
"win81-x64": {
50+
"#import": [ "win81", "win8-x64" ]
51+
},
52+
"win81-arm": {
53+
"#import": [ "win81", "win8-arm" ]
54+
},
55+
56+
"win10": {
57+
"#import": [ "win81" ]
58+
},
59+
"win10-x86": {
60+
"#import": [ "win10", "win81-x86" ]
61+
},
62+
"win10-x64": {
63+
"#import": [ "win10", "win81-x64" ]
64+
},
65+
"win10-arm": {
66+
"#import": [ "win10", "win81-arm" ]
67+
},
68+
69+
70+
"aot": {
71+
"#import": [ "any" ]
72+
},
73+
74+
"win-aot": {
75+
"#import": [ "win", "aot" ]
76+
},
77+
"win-x86-aot": {
78+
"#import": [ "win-aot", "win-x86" ]
79+
},
80+
"win-x64-aot": {
81+
"#import": [ "win-aot", "win-x64" ]
82+
},
83+
84+
"win7-aot": {
85+
"#import": [ "win-aot", "win7" ]
86+
},
87+
"win7-x86-aot": {
88+
"#import": [ "win7-aot", "win7-x86" ]
89+
},
90+
"win7-x64-aot": {
91+
"#import": [ "win7-aot", "win7-x64" ]
92+
},
93+
94+
"win8-aot": {
95+
"#import": [ "win8", "win7-aot" ]
96+
},
97+
"win8-x86-aot": {
98+
"#import": [ "win8-aot", "win8-x86", "win7-x86-aot" ]
99+
},
100+
"win8-x64-aot": {
101+
"#import": [ "win8-aot", "win8-x64", "win7-x64-aot" ]
102+
},
103+
"win8-arm-aot": {
104+
"#import": [ "win8-aot", "win8-arm" ]
105+
},
106+
107+
"win81-aot": {
108+
"#import": [ "win81", "win8-aot" ]
109+
},
110+
"win81-x86-aot": {
111+
"#import": [ "win81-aot", "win81-x86", "win8-x86-aot" ]
112+
},
113+
"win81-x64-aot": {
114+
"#import": [ "win81-aot", "win81-x64", "win8-x64-aot" ]
115+
},
116+
"win81-arm-aot": {
117+
"#import": [ "win81-aot", "win81-arm", "win8-arm-aot" ]
118+
},
119+
120+
"win10-aot": {
121+
"#import": [ "win10", "win81-aot" ]
122+
},
123+
"win10-x86-aot": {
124+
"#import": [ "win10-aot", "win10-x86", "win81-x86-aot" ]
125+
},
126+
"win10-x64-aot": {
127+
"#import": [ "win10-aot", "win10-x64", "win81-x64-aot" ]
128+
},
129+
"win10-arm-aot": {
130+
"#import": [ "win10-aot", "win10-arm", "win81-arm-aot" ]
131+
},
132+
133+
"unix": {
134+
"#import": [ "any" ]
135+
},
136+
"unix-x64": {
137+
"#import": [ "unix" ]
138+
},
139+
140+
"osx": {
141+
"#import": [ "unix" ]
142+
},
143+
"osx-x64": {
144+
"#import": [ "osx", "unix-x64" ]
145+
},
146+
147+
"osx.10.10": {
148+
"#import": [ "osx" ]
149+
},
150+
"osx.10.10-x64": {
151+
"#import": [ "osx.10.10", "osx-x64" ]
152+
},
153+
154+
"osx.10.11": {
155+
"#import": [ "osx.10.10" ]
156+
},
157+
"osx.10.11-x64": {
158+
"#import": [ "osx.10.11", "osx.10.10-x64" ]
159+
},
160+
161+
"linux": {
162+
"#import": [ "unix" ]
163+
},
164+
"linux-x64": {
165+
"#import": [ "unix", "unix-x64" ]
166+
},
167+
168+
"centos": {
169+
"#import": [ "linux" ]
170+
},
171+
"centos-x64": {
172+
"#import": [ "centos", "linux-x64" ]
173+
},
174+
175+
"centos.7.1": {
176+
"#import": [ "centos" ]
177+
},
178+
179+
"centos.7.1-x64": {
180+
"#import": [ "centos.7.1", "centos-x64" ]
181+
},
182+
183+
"centos.7": {
184+
"#import": [ "centos.7.1" ]
185+
},
186+
187+
"centos.7-x64": {
188+
"#import": [ "centos.7", "centos.7.1-x64" ]
189+
},
190+
191+
"ubuntu": {
192+
"#import": [ "linux" ]
193+
},
194+
"ubuntu-x64": {
195+
"#import": [ "ubuntu", "linux-x64" ]
196+
},
197+
198+
"ubuntu.14.04": {
199+
"#import": [ "ubuntu" ]
200+
},
201+
"ubuntu.14.04-x64": {
202+
"#import": [ "ubuntu.14.04", "ubuntu-x64" ]
203+
},
204+
205+
"ubuntu.14.10": {
206+
"#import": [ "ubuntu.14.04" ]
207+
},
208+
"ubuntu.14.10-x64": {
209+
"#import": [ "ubuntu.14.10", "ubuntu.14.04-x64" ]
210+
},
211+
212+
"ubuntu.15.04": {
213+
"#import": [ "ubuntu.14.10" ]
214+
},
215+
"ubuntu.15.04-x64": {
216+
"#import": [ "ubuntu.15.04", "ubuntu.14.10-x64" ]
217+
},
218+
219+
"linuxmint.17": {
220+
"#import": [ "ubuntu.14.04" ]
221+
},
222+
"linuxmint.17-x64": {
223+
"#import": [ "linuxmint.17", "ubuntu.14.04-x64" ]
224+
},
225+
226+
"linuxmint.17.1": {
227+
"#import": [ "linuxmint.17" ]
228+
},
229+
"linuxmint.17.1-x64": {
230+
"#import": [ "linuxmint.17.1", "linuxmint.17-x64" ]
231+
},
232+
233+
"linuxmint.17.2": {
234+
"#import": [ "linuxmint.17.1" ]
235+
},
236+
"linuxmint.17.2-x64": {
237+
"#import": [ "linuxmint.17.2", "linuxmint.17.1-x64" ]
238+
},
239+
240+
"linuxmint.17.3": {
241+
"#import": [ "linuxmint.17.2" ]
242+
},
243+
"linuxmint.17.2-x64": {
244+
"#import": [ "linuxmint.17.3", "linuxmint.17.2-x64" ]
245+
}
246+
}
247+
}
248+

0 commit comments

Comments
 (0)