From 11b730aef96ff3e2aca8195ac96a56cef472d38a Mon Sep 17 00:00:00 2001 From: Godaddy-del Date: Sat, 7 Dec 2024 20:01:40 -0500 Subject: [PATCH] Update UpdateAppxManifestVersion.ps1 --- build/scripts/UpdateAppxManifestVersion.ps1 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/scripts/UpdateAppxManifestVersion.ps1 b/build/scripts/UpdateAppxManifestVersion.ps1 index 1c6bc5dd..695d82b2 100644 --- a/build/scripts/UpdateAppxManifestVersion.ps1 +++ b/build/scripts/UpdateAppxManifestVersion.ps1 @@ -1,10 +1,9 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. - <# .SYNOPSIS Updates the version number in an AppxManifest file. - +*. .PARAMETER AppxManifest The path to the AppxManifest file. @@ -28,4 +27,4 @@ param( $xmlDoc = [XML](Get-Content $AppxManifest) $xmlDoc.Package.Identity.setAttribute("Version", $Version); -$xmlDoc.Save($AppxManifest) \ No newline at end of file +$xmlDoc.Save($AppxManifest)