UNPKG

gulp-appx

Version:

Gulp build system for Windows 10 Apps

57 lines (45 loc) 1.7 kB
<?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" IgnorableNamespaces="uap mp"> <Identity Name="122f1d07-66a9-427c-9fb4-80fa75b5d81a" Version="1.0.0.0" Publisher="CN=Contoso" /> <mp:PhoneIdentity PhoneProductId="122f1d07-66a9-427c-9fb4-80fa75b5d81a" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> <Properties> <DisplayName>ContosoApp</DisplayName> <PublisherDisplayName>Contoso</PublisherDisplayName> <Logo>images\storelogo.png</Logo> </Properties> <Dependencies> <TargetPlatform Name="Windows.Universal" MinVersion="10.0.10030.0" MaxVersionTested="10.0.10030.0" /> </Dependencies> <Resources> <Resource Language="en-us" /> </Resources> <Applications> <Application Id="App" StartPage="http://localhost:3000"> <uap:VisualElements DisplayName="ContosoApp" Description="ContosoApp" ForegroundText="light" BackgroundColor="#464646" Square150x150Logo="images\Logo.png" Square44x44Logo="images\SmallLogo.png"> <uap:SplashScreen Image="images\splashscreen.png" /> </uap:VisualElements> <uap:ApplicationContentUriRules> <uap:Rule Match="http://localhost:3000" Type="include"></uap:Rule> </uap:ApplicationContentUriRules> </Application> </Applications> <Capabilities> <Capability Name="internetClient" /> </Capabilities> </Package> <!--Build v0-->