Created
November 5, 2017 07:02
-
-
Save pnp0a03/41db40d3a8feb754b902ca67435cef68 to your computer and use it in GitHub Desktop.
FCU Commandline sample - Package.appxmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?><Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" IgnorableNamespaces="uap mp"> <Identity Name="55884DDLG.FCUTrial" Publisher="CN=0ADFD460-31D2-4A92-A4A8-DF66FF78B5F8" Version="1.1.1.0" /> <mp:PhoneIdentity PhoneProductId="f0696861-c4dc-44b1-87f7-97601f0c45c3" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> <Properties> <DisplayName>FCU Trial</DisplayName> <PublisherDisplayName>DDLG</PublisherDisplayName> <Logo>Assets\StoreLogo.png</Logo> </Properties> <Dependencies> <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> </Dependencies> <Resources> <Resource Language="x-generate" /> </Resources> <Applications> <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="App1.App"> <uap:VisualElements DisplayName="FCU Trial" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="App1" BackgroundColor="transparent"> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"> </uap:DefaultTile> <uap:SplashScreen Image="Assets\SplashScreen.png" uap5:Optional="false" /> </uap:VisualElements> <Extensions> <uap5:Extension Category="windows.appExecutionAlias" Executable="App1.exe" EntryPoint="App1.App" > <uap5:AppExecutionAlias> <uap5:ExecutionAlias Alias="App1.exe"/> <uap5:ExecutionAlias Alias="hogehoge.exe"/> </uap5:AppExecutionAlias> </uap5:Extension> </Extensions> </Application> </Applications> <Capabilities> <Capability Name="internetClient" /> </Capabilities></Package> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment