Skip to content

Instantly share code, notes, and snippets.

@the-nose-knows
Created August 2, 2019 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save the-nose-knows/01621d68b7b6a92067780dc69cdf9ded to your computer and use it in GitHub Desktop.
Save the-nose-knows/01621d68b7b6a92067780dc69cdf9ded to your computer and use it in GitHub Desktop.
Restricted Cap package manifest
<?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:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap">
<Identity
Name="90f76fe2-a659-46b3-88f7-6b8eafd52ff9"
Publisher="CN=user name"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="90f76fe2-a659-46b3-88f7-6b8eafd52ff9" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>rescap_test</DisplayName>
<PublisherDisplayName>user name</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="rescap_test.App">
<uap:VisualElements
DisplayName="rescap_test"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="rescap_test"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<rescap:Capability Name="broadFileSystemAccess" />
</Capabilities>
</Package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment