Skip to content

Commit

Permalink
Code Quality: Fix launcher for sideload preview
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 committed Dec 20, 2024
1 parent 1689114 commit 16c19b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/Configure-AppxManifest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ elseif ($Branch -eq "StorePreview")
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "Assets\\AppTiles\\Dev", "Assets\AppTiles\Preview" }) | `
Set-Content $_ -NoNewline `
}

Get-ChildItem $WorkingDir -Include *.cs, *.cpp -recurse | ForEach-Object -Process `
{ `
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "files-dev", "files-preview" }) | `
Set-Content $_ -NoNewline `
}
}
elseif ($Branch -eq "SideloadStable")
{
Expand Down

0 comments on commit 16c19b7

Please sign in to comment.