We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9086995 commit 03d1dfcCopy full SHA for 03d1dfc
.pipelines/v2/templates/job-build-ui-tests.yml
@@ -68,14 +68,13 @@ jobs:
68
69
- template: .\steps-restore-nuget.yml
70
71
- - task: NuGetCommand@2
+ - task: MSBuild@1
72
displayName: Restore solution-level NuGet packages
73
inputs:
74
- command: restore
75
- feedsToUse: config
76
- configPath: nuget.config
77
- restoreSolution: PowerToys.slnx
78
- restoreDirectory: '$(Build.SourcesDirectory)\packages'
+ solution: PowerToys.slnx
+ msbuildArguments: '/t:restore /p:RestorePackagesConfig=true'
+ platform: $(BuildPlatform)
+ configuration: $(BuildConfiguration)
79
80
# Build all UI test projects if no specific modules are specified
81
- ${{ if eq(length(parameters.uiTestModules), 0) }}:
0 commit comments