Skip to content

Instantly share code, notes, and snippets.

@dariuszparys
Created May 29, 2015 05:54
Show Gist options
  • Save dariuszparys/94d3713c80f922ff0ec3 to your computer and use it in GitHub Desktop.
Save dariuszparys/94d3713c80f922ff0ec3 to your computer and use it in GitHub Desktop.
Windows 10 Hosted Web App package.appxmanifest Beispiel
<?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="75e8f2a8-417e-4cc4-80f7-911b76c90cad"
Version="1.0.0.0"
Publisher="CN=dparys" />
<mp:PhoneIdentity PhoneProductId="75e8f2a8-417e-4cc4-80f7-911b76c90cad" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>App1</DisplayName>
<PublisherDisplayName>dparys</PublisherDisplayName>
<Logo>images\storelogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10069.0" MaxVersionTested="10.0.10069.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application
Id="App"
StartPage="http://lockscreenweb.azurewebsites.net/">
<uap:VisualElements
DisplayName="App1"
Description="App1"
BackgroundColor="#464646"
Square150x150Logo="images\Logo.png"
Square44x44Logo="images\SmallLogo.png">
<uap:SplashScreen Image="images\splashscreen.png" />
</uap:VisualElements>
<uap:ApplicationContentUriRules>
<uap:Rule Match="http://lockscreenweb.azurewebsites.net/" Type="include" WindowsRuntimeAccess="all"/>
</uap:ApplicationContentUriRules>
</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