Skip to content

Commit 5f38ed7

Browse files
Merge pull request #1567 from DustinCampbell/cdn-links
Update OmniSharp and Mono downloads to use Azure CDN
2 parents 01fba10 + 86b3880 commit 5f38ed7

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

package.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@
6868
"runtimeDependencies": [
6969
{
7070
"description": "Mono Runtime (Linux / x86)",
71-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86-5.2.0.104.zip",
71+
"url": "https://omnisharpdownload.azureedge.net/ext/mono.linux-x86-5.2.0.104.zip",
72+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86-5.2.0.104.zip",
7273
"installPath": "./bin",
7374
"platforms": [
7475
"linux"
@@ -84,7 +85,8 @@
8485
},
8586
{
8687
"description": "Mono Runtime (Linux / x64)",
87-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86_64-5.2.0.104.zip",
88+
"url": "https://omnisharpdownload.azureedge.net/ext/mono.linux-x86_64-5.2.0.104.zip",
89+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86_64-5.2.0.104.zip",
8890
"installPath": "./bin",
8991
"platforms": [
9092
"linux"
@@ -100,7 +102,8 @@
100102
},
101103
{
102104
"description": "Mono Runtime (macOS)",
103-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.osx-5.2.0.104.zip",
105+
"url": "https://omnisharpdownload.azureedge.net/ext/mono.osx-5.2.0.104.zip",
106+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/mono.osx-5.2.0.104.zip",
104107
"installPath": "./bin",
105108
"platforms": [
106109
"darwin"
@@ -113,7 +116,8 @@
113116
},
114117
{
115118
"description": "Mono Framework Assemblies",
116-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/framework-5.2.0.104.zip",
119+
"url": "https://omnisharpdownload.azureedge.net/ext/framework-5.2.0.104.zip",
120+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/framework-5.2.0.104.zip",
117121
"installPath": "./bin/framework",
118122
"platforms": [
119123
"darwin",
@@ -123,7 +127,8 @@
123127
},
124128
{
125129
"description": "OmniSharp (.NET 4.6 / x86)",
126-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.21.0zip",
130+
"url": "https://omnisharpdownload.azureedge.net/ext/omnisharp-win-x86-1.21.0.zip",
131+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.21.0.zip",
127132
"installPath": "./bin/omnisharp",
128133
"platforms": [
129134
"win32"
@@ -135,7 +140,8 @@
135140
},
136141
{
137142
"description": "OmniSharp (.NET 4.6 / x64)",
138-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.21.0.zip",
143+
"url": "https://omnisharpdownload.azureedge.net/ext/omnisharp-win-x64-1.21.0.zip",
144+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.21.0.zip",
139145
"installPath": "./bin/omnisharp",
140146
"platforms": [
141147
"win32"
@@ -147,7 +153,8 @@
147153
},
148154
{
149155
"description": "OmniSharp (Mono 4.6)",
150-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-mono-1.21.0.zip",
156+
"url": "https://omnisharpdownload.azureedge.net/ext/omnisharp-mono-1.21.0.zip",
157+
"fallbackUrl": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-mono-1.21.0.zip",
151158
"installPath": "./bin/omnisharp",
152159
"platforms": [
153160
"darwin",
@@ -444,9 +451,9 @@
444451
"description": "Suppress the notification window to perform a 'dotnet restore' when dependencies can't be resolved."
445452
},
446453
"csharp.suppressHiddenDiagnostics": {
447-
"type": "boolean",
448-
"default": true,
449-
"description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane."
454+
"type": "boolean",
455+
"default": true,
456+
"description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane."
450457
},
451458
"omnisharp.path": {
452459
"type": [
@@ -2271,4 +2278,4 @@
22712278
}
22722279
]
22732280
}
2274-
}
2281+
}

0 commit comments

Comments
 (0)