Skip to content

Commit

Permalink
Upgraded pipelines to use VS2022
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGrafnetter committed Sep 16, 2023
1 parent 304f6cc commit 0fdb20a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- job: Test
displayName: 'Test'
pool:
vmImage: 'windows-2019'
vmImage: 'windows-2022'
variables:
buildConfiguration: 'Debug'
steps:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
dependsOn: Test
condition: and(succeeded(), eq(variables['Build.Reason'], 'Manual'))
pool:
vmImage: 'windows-2019'
vmImage: 'windows-2022'
variables:
buildConfiguration: 'Release'
steps:
Expand Down Expand Up @@ -121,6 +121,14 @@ jobs:
configuration: '$(buildConfiguration)'
restoreNugetPackages: false

- task: VSBuild@1
displayName: 'VSBuild ($(buildConfiguration) ARM64)'
inputs:
solution: '$(solution)'
platform: 'ARM64'
configuration: '$(buildConfiguration)'
restoreNugetPackages: false

- task: PowerShell@2
displayName: 'ZIP Pack (PowerShell Module)'
inputs:
Expand Down

0 comments on commit 0fdb20a

Please sign in to comment.