Skip to content

Commit fcd7636

Browse files
authored
Merge pull request #1883 from OmniSharp/users/piel/release_1.14.1_beta
Users/piel/release 1.14.1 beta
2 parents f5a303b + e4657a0 commit fcd7636

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.14.0-beta1",
4+
"version": "1.14.0-beta2",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -158,8 +158,8 @@
158158
},
159159
{
160160
"description": ".NET Core Debugger (Windows / x64)",
161-
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-win7-x64.zip",
162-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-win7-x64.zip",
161+
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-win7-x64.zip",
162+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-win7-x64.zip",
163163
"installPath": ".debugger",
164164
"platforms": [
165165
"win32"
@@ -171,8 +171,8 @@
171171
},
172172
{
173173
"description": ".NET Core Debugger (macOS / x64)",
174-
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-osx.10.11-x64.zip",
175-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-osx.10.11-x64.zip",
174+
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-osx-x64.zip",
175+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-osx.10.11-x64.zip",
176176
"installPath": ".debugger",
177177
"platforms": [
178178
"darwin"
@@ -188,8 +188,8 @@
188188
},
189189
{
190190
"description": ".NET Core Debugger (linux / x64)",
191-
"url": "https://download.visualstudio.microsoft.com/download/pr/11121545/61b8ee7aa56d99502a7ae3a19547e73b/coreclr-debug-linux-x64.zip",
192-
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-13-0/coreclr-debug-linux-x64.zip",
191+
"url": "https://download.visualstudio.microsoft.com/download/pr/100317420/a30d7e11bc435433d297adc824ee837f/coreclr-debug-linux-x64.zip",
192+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-4/coreclr-debug-linux-x64.zip",
193193
"installPath": ".debugger",
194194
"platforms": [
195195
"linux"

src/tools/UpdatePackageDependencies.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,16 @@ export function updatePackageDependencies() {
6060
};
6161

6262
newPrimaryUrls.split(',').forEach(urlToUpdate =>{
63-
let depedency = findDependencyToUpdate(urlToUpdate);
64-
depedency.url = urlToUpdate;
63+
console.log(`Trying to update ${urlToUpdate}`);
64+
let dependency = findDependencyToUpdate(urlToUpdate);
65+
dependency.url = urlToUpdate;
6566
});
6667

6768
if (newFallbackUrls !== undefined) {
6869
newFallbackUrls.split(',').forEach(urlToUpdate =>{
69-
let depedency = findDependencyToUpdate(urlToUpdate);
70-
depedency.fallbackUrl = urlToUpdate;
70+
console.log(`Trying to update ${urlToUpdate}`);
71+
let dependency = findDependencyToUpdate(urlToUpdate);
72+
dependency.fallbackUrl = urlToUpdate;
7173
});
7274
}
7375

0 commit comments

Comments
 (0)