Skip to content

Commit

Permalink
[0.71] Fix Playground Debug Test Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthysell committed Oct 11, 2023
1 parent d9398cf commit 825459d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ado/jobs/playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
# of debug feature tests. In the future, these tests should be performed against a host app
# better suited for automated tests (probably the E2E test app).
- powershell: |
$appRecipeToolPath = Join-Path (Get-CimInstance MSFT_VSInstance | Sort-Object -Property 'Version' -Descending)[0].InstallLocation "Common7\IDE\DeployAppRecipe.exe"
$appRecipeToolPath = Join-Path (& "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath) "Common7\IDE\DeployAppRecipe.exe"
if (!(Test-Path $appRecipeToolPath)) { throw "can't find '$appRecipeToolPath'" }
$platDirs = @{ "x64" = "x64\"; "x86" = ""} # map from ADO BuildPlatform arg to VS build output dir part
$appRecipePath = "$(Build.SourcesDirectory)\packages\playground\windows\$($platDirs['${{ matrix.BuildPlatform }}'])${{ matrix.BuildConfiguration }}\playground\playground.build.appxrecipe"
Expand Down

0 comments on commit 825459d

Please sign in to comment.