We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1689114 commit 16c19b7Copy full SHA for 16c19b7
.github/scripts/Configure-AppxManifest.ps1
@@ -80,6 +80,12 @@ elseif ($Branch -eq "StorePreview")
80
(Get-Content $_ -Raw | ForEach-Object -Process { $_ -replace "Assets\\AppTiles\\Dev", "Assets\AppTiles\Preview" }) | `
81
Set-Content $_ -NoNewline `
82
}
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
+ }
89
90
elseif ($Branch -eq "SideloadStable")
91
{
0 commit comments