Skip to content

Commit d6f9310

Browse files
authored
Update SDK version from 8.0.404 to 8.0.415 (#5543)
* Update SDK version from 8.0.404 to 8.0.415 * Add .NET SDK installation step to YAML template Added a task to install .NET SDK 8.0.415 on the agent.
1 parent a5c1ffb commit d6f9310

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

build/template-run-mi-e2e-imds.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ parameters:
44

55
steps:
66

7+
# Ensure the exact SDK is available on the agent
8+
- task: UseDotNet@2
9+
displayName: 'Install .NET SDK 8.0.415'
10+
inputs:
11+
packageType: 'sdk'
12+
version: '8.0.415'
13+
includePreviewVersions: false
14+
performMultiLevelLookup: true
15+
716
# Restore
817
- task: DotNetCoreCLI@2
918
displayName: Restore E2E project

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.404",
3+
"version": "8.0.415",
44
"rollForward": "latestFeature"
55
}
66
}

0 commit comments

Comments
 (0)