Skip to content

Commit 60ee87c

Browse files
committed
Fix script
1 parent e3e151e commit 60ee87c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tools/packaging/packaging.psm1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3727,13 +3727,13 @@ function New-MSIXPackage
37273727
$releasePublisher = 'CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US'
37283728

37293729
$appxManifest = Get-Content "$RepoRoot\assets\AppxManifest.xml" -Raw
3730-
$appxManifest = $appxManifest
3731-
.Replace('$VERSION$', $ProductVersion)
3732-
.Replace('$ARCH$', $Architecture)
3733-
.Replace('$PRODUCTNAME$', $productName)
3734-
.Replace('$DISPLAYNAME$', $displayName)
3735-
.Replace('$PUBLISHER$', $releasePublisher)
3736-
.Replace('$PHONEPRODUCTID$', $PhoneProductId)
3730+
$appxManifest = $appxManifest.
3731+
Replace('$VERSION$', $ProductVersion).
3732+
Replace('$ARCH$', $Architecture).
3733+
Replace('$PRODUCTNAME$', $productName).
3734+
Replace('$DISPLAYNAME$', $displayName).
3735+
Replace('$PUBLISHER$', $releasePublisher).
3736+
Replace('$PHONEPRODUCTID$', $PhoneProductId)
37373737

37383738
$xml = [xml]$appxManifest
37393739
if ($isPreview) {

0 commit comments

Comments
 (0)