Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/blazor-test-app/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": ">=10.0.300"
"version": ">=10.0.302"
}
}
9 changes: 9 additions & 0 deletions tools/yaml-templates/android-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ steps:
pnpm install
workingDirectory: '$(ClientSdkProjectDirectory)'

# Pin a security-patched .NET SDK so the Blazor test app builds against a
# non-vulnerable SDK regardless of the agent image default. Must satisfy the
# floor in apps/blazor-test-app/global.json.
- task: UseDotNet@2
displayName: 'Install .NET SDK 10.0.302 (security-patched)'
inputs:
packageType: sdk
version: '10.0.302'

- task: CmdLine@2
displayName: 'Build client sdk'
inputs:
Expand Down
9 changes: 9 additions & 0 deletions tools/yaml-templates/build-app-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ steps:
versionSpec: '18.x'
displayName: 'Install Node.js'

# Pin a security-patched .NET SDK so the Blazor test app builds against a
# non-vulnerable SDK regardless of the agent image default. Must satisfy the
# floor in apps/blazor-test-app/global.json.
- task: UseDotNet@2
displayName: 'Install .NET SDK 10.0.302 (security-patched)'
inputs:
packageType: sdk
version: '10.0.302'

# Cache task is used to create a cache of files which won't change between jobs, task, or steps.
# In this task below a unique identifier(fingerprint) is created for the cache name, usually it's
# 'command_name | operating_system | lockfile'
Expand Down
9 changes: 9 additions & 0 deletions tools/yaml-templates/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ steps:
inputs:
versionSpec: '18.x'

# Pin a security-patched .NET SDK so the Blazor test app builds against a
# non-vulnerable SDK regardless of the agent image default. Must satisfy the
# floor in apps/blazor-test-app/global.json.
- task: UseDotNet@2
displayName: 'Install .NET SDK 10.0.302 (security-patched)'
inputs:
packageType: sdk
version: '10.0.302'

- task: CmdLine@2
displayName: 'Setup pnpm'
inputs:
Expand Down
9 changes: 9 additions & 0 deletions tools/yaml-templates/ios-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ steps:
pnpm install
workingDirectory: '$(ClientSdkProjectDirectory)'

# Pin a security-patched .NET SDK so the Blazor test app builds against a
# non-vulnerable SDK regardless of the agent image default. Must satisfy the
# floor in apps/blazor-test-app/global.json.
- task: UseDotNet@2
displayName: 'Install .NET SDK 10.0.302 (security-patched)'
inputs:
packageType: sdk
version: '10.0.302'

- task: CmdLine@2
displayName: 'Build client sdk'
inputs:
Expand Down
Loading