We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70f85ff commit 7c6b06cCopy full SHA for 7c6b06c
1 file changed
Packaging/Build.ps1
@@ -154,11 +154,14 @@ if ($Mode -eq "Canary") {
154
$app.VisualElements.DisplayName = $app.VisualElements.DisplayName + " (Canary)"
155
}
156
157
- # 修改 CLI Alias: mcm.exe -> mcmc.exe
158
- $aliasNode = $app.SelectSingleNode(".//desktop:ExecutionAlias", $ns)
159
- if ($aliasNode) {
+ if ($app.Id -eq "CliTool") {
+ $aliasNode = $app.SelectSingleNode(".//desktop:ExecutionAlias", $ns)
160
$aliasNode.Alias = "mcmc.exe"
161
+ if ($app.Id -eq "MuConvert") {
162
163
+ $aliasNode.Alias = "MuConvertCanary.exe"
164
+ }
165
166
167
$xml.Save($ManifestPath)
0 commit comments