File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
build/AzurePipelinesTemplates Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -177,10 +177,10 @@ jobs:
177177 inputs:
178178 filePath: '$(Build.SourcesDirectory)\$(SelfRepoName)\test\ModifySampleAppsReferences.ps1'
179179 arguments: >
180- -SampleRepoRoot "$(Build.SourcesDirectory)\$(SamplesRepoName)"
180+ -SampleRepoRoot "$(Build.SourcesDirectory)\$(SamplesRepoName)\Samples "
181181 -FoundationVersion "$(FoundationVersion)"
182182 -FoundationPackagesFolder "$(Build.SourcesDirectory)\$(SamplesRepoName)\Samples\localpackages"
183- -WASDKNugetDependencies variables[' wasdkDependencies']
183+ -WASDKNugetDependencies "$( wasdkDependencies)"
184184
185185 # update the nuget.config file to point to the internal feed
186186 - powershell: |
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Set-StrictMode -Version 3.0
1010$ErrorActionPreference = ' Stop'
1111
1212$packagesToRemoveList = $WASDKNugetDependencies -split ' ;'
13+ $packagesToRemoveList += @ (" Microsoft.WindowsAppSDK" )
1314
1415$packagesToUpdateTable = @ {" Microsoft.WindowsAppSDK.Foundation" = $FoundationVersion }
1516
@@ -33,6 +34,7 @@ if (!($FoundationPackagesFolder -eq ""))
3334 }
3435}
3536Write-Host " NuGet packages to version table: $ ( $packagesToUpdateTable | Out-String ) "
37+ Write-Host " NuGet packages to remove: $ ( $packagesToRemoveList | Out-String ) "
3638
3739Get-ChildItem - Recurse packages.config - Path $SampleRepoRoot | foreach-object {
3840 $content = Get-Content $_.FullName - Raw
You can’t perform that action at this time.
0 commit comments