Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/packaging/packaging.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -4300,7 +4300,7 @@ function New-MSIXPackage
Write-Verbose "Using Preview assets" -Verbose
} elseif ($LTS) {
# This is the PhoneProductId for the "Microsoft.PowerShell-LTS" package.
$PhoneProductId = "a9af273a-c636-47ac-bc2a-775edf80b2b9"
$PhoneProductId = "b7a4b003-3704-47a9-b018-cfcc9801f4fc"
Write-Verbose "Using LTS assets" -Verbose
}
Comment on lines 4301 to 4305
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$PhoneProductId is assigned in the LTS branch, but it is never referenced anywhere else in New-MSIXPackage (or the module). As a result, changing this GUID appears to be a no-op and won’t affect the generated MSIX/manifest, which conflicts with the PR goal of updating Store publishing metadata. Either wire PhoneProductId into the generated AppxManifest (or whatever Store metadata consumes it) or remove this unused variable/comment to avoid misleading future changes.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a good catch. It seems lots of changes in this function is missing, such as the '$PHONEPRODUCTID$' placeholder in the AppxManifest file.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot check if this still applies


Expand Down
Loading