Skip to content

Commit 16c19b7

Browse files
committed
Code Quality: Fix launcher for sideload preview
1 parent 1689114 commit 16c19b7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/scripts/Configure-AppxManifest.ps1

+6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ elseif ($Branch -eq "StorePreview")
8080
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "Assets\\AppTiles\\Dev", "Assets\AppTiles\Preview" }) | `
8181
Set-Content $_ -NoNewline `
8282
}
83+
84+
Get-ChildItem $WorkingDir -Include *.cs, *.cpp -recurse | ForEach-Object -Process `
85+
{ `
86+
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "files-dev", "files-preview" }) | `
87+
Set-Content $_ -NoNewline `
88+
}
8389
}
8490
elseif ($Branch -eq "SideloadStable")
8591
{

0 commit comments

Comments
 (0)