We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ade08b commit 8104e7fCopy full SHA for 8104e7f
src/modules/cmdpal/extensionsdk/nuget/BuildSDKHelper.ps1
@@ -57,7 +57,12 @@ if ($IsAzurePipelineBuild) {
57
$solutionPath = (Join-Path $PSScriptRoot "..\..\..\..\..\PowerToys.slnx")
58
59
if (($BuildStep -ieq "all") -Or ($BuildStep -ieq "build")) {
60
- & $msbuildPath $solutionPath /t:Restore
+ $restoreArgs = @(
61
+ $solutionPath
62
+ "/t:Restore"
63
+ "/p:RestorePackagesConfig=true"
64
+ )
65
+ & $msbuildPath $restoreArgs
66
67
Try {
68
foreach ($config in $Configuration.Split(",")) {
0 commit comments