Skip to content

Commit

Permalink
Fix MSIX package console alias. (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
r12f authored Aug 4, 2021
1 parent 5d0f2df commit 33ac9ed
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build/templates/msix/appxmanifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
<Identity Name="R12f.R12f.Rnp" Version="{version}.0" Publisher="CN=Jinzhou Jiang, O=Jinzhou Jiang, L=Redmond, S=Washington, C=US" ProcessorArchitecture="{build_arch}" />
<Properties>
<DisplayName>Rnp</DisplayName>
Expand All @@ -27,6 +29,13 @@
BackgroundColor="antiqueWhite"
Square150x150Logo="images\logo-150.png"
Square44x44Logo="images\logo-44.png" />
<Extensions>
<uap3:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication">
<uap3:AppExecutionAlias>
<desktop:ExecutionAlias Alias="rnp.exe" />
</uap3:AppExecutionAlias>
</uap3:Extension>
</Extensions>
</Application>
</Applications>
</Package>

0 comments on commit 33ac9ed

Please sign in to comment.