Skip to content

Commit fb59b44

Browse files
committed
Updating scripts to publish linux-arm packages
1 parent f5a303b commit fb59b44

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
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.1",
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/100306270/7f12cb46334efd3d5db4d254e5f2440d/coreclr-debug-win7-x64.zip",
162+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-1/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/100306270/7f12cb46334efd3d5db4d254e5f2440d/coreclr-debug-osx-x64.zip",
175+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-1/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/100306270/7f12cb46334efd3d5db4d254e5f2440d/coreclr-debug-linux-x64.zip",
192+
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-14-1/coreclr-debug-linux-x64.zip",
193193
"installPath": ".debugger",
194194
"platforms": [
195195
"linux"

src/tools/UpdatePackageDependencies.ts

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

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

6768
if (newFallbackUrls !== undefined) {
6869
newFallbackUrls.split(',').forEach(urlToUpdate =>{
70+
console.log(`Trying to update ${urlToUpdate}`);
6971
let depedency = findDependencyToUpdate(urlToUpdate);
7072
depedency.fallbackUrl = urlToUpdate;
7173
});

0 commit comments

Comments
 (0)