Skip to content

Commit a7dc750

Browse files
committed
Specify .net sdk to download
1 parent 82c72fe commit a7dc750

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

azure-pipelines/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ steps:
77
clean: true
88
submodules: true
99
fetchTags: false
10+
fetchDepth: 0
1011

1112
- template: prereqs.yml
1213

azure-pipelines/prereqs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ steps:
99
versionSpec: '16.x'
1010

1111
- task: UseDotNet@2
12+
displayName: 'Install .NET Core SDKs'
13+
inputs:
14+
version: '7.0.100'
1215

1316
# Set the CI build number to the VSIX version we're creating from this build.
1417
- script: |

azure-pipelines/test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ steps:
77

88
- template: prereqs.yml
99

10-
- task: UseDotNet@2
11-
displayName: 'Install .NET Core SDKs'
12-
inputs:
13-
version: '7.0.100'
14-
1510
- pwsh: |
1611
if ($IsLinux) {
1712
Write-Host "Activating screen emulation"

tasks/vsceTasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export async function createPackageAsync(outputFolder: string, prerelease: boole
4848
vsceArgs.push("--pre-release");
4949
}
5050

51-
vsceArgs.push('--baseContentUrl', 'https://devdiv.visualstudio.com/DevDiv/_git/vscode-csharp-next?path=/');
51+
vsceArgs.push('--baseContentUrl', 'https://github.com/dotnet/vscode-csharp');
5252

5353
const spawnResult = await spawnNode(vsceArgs);
5454
if (spawnResult.code != 0) {

0 commit comments

Comments
 (0)