Skip to content

Commit 86b3880

Browse files
Add fallback URLs for OmniSharp and Mono downloads
1 parent 6c2d00a commit 86b3880

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
{
7070
"description": "Mono Runtime (Linux / x86)",
7171
"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"
@@ -85,6 +86,7 @@
8586
{
8687
"description": "Mono Runtime (Linux / x64)",
8788
"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"
@@ -101,6 +103,7 @@
101103
{
102104
"description": "Mono Runtime (macOS)",
103105
"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"
@@ -114,6 +117,7 @@
114117
{
115118
"description": "Mono Framework Assemblies",
116119
"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",
@@ -124,6 +128,7 @@
124128
{
125129
"description": "OmniSharp (.NET 4.6 / x86)",
126130
"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"
@@ -136,6 +141,7 @@
136141
{
137142
"description": "OmniSharp (.NET 4.6 / x64)",
138143
"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"
@@ -148,6 +154,7 @@
148154
{
149155
"description": "OmniSharp (Mono 4.6)",
150156
"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)