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)