From ab3ce3d9cbc33f79d806abef2d037509859ae54c Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Wed, 4 Jan 2023 21:46:21 +0000 Subject: [PATCH] Add manifest rewriting to Set-AppVersion --- scripts/Set-AppVersion.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Set-AppVersion.ps1 b/scripts/Set-AppVersion.ps1 index c27d6b00..c9875c78 100644 --- a/scripts/Set-AppVersion.ps1 +++ b/scripts/Set-AppVersion.ps1 @@ -1,4 +1,5 @@ # Updates the app version in all required places according to the custom value +# and then rewrites UWP manifests [CmdletBinding()] param ( @@ -68,6 +69,7 @@ if ($VERSION -match '^v?[\d.]') { $BuildNWJSScript = $BuildNWJSScript -replace '\s+$', '' Set-Content -encoding "utf8BOM" ./scripts/Build-NWJS.ps1 $BuildNWJSScript } + . ./scripts/Rewrite-Manifests.ps1 } else { "No valid INPUT_VERSION or TAG_VERSION were provided. File version numbers were unchanged.`n" } \ No newline at end of file