Skip to content

Instantly share code, notes, and snippets.

@Sergio0694
Last active November 19, 2018 10:53
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 Sergio0694/f5456348d902f6bae92462bbed694e78 to your computer and use it in GitHub Desktop.
Save Sergio0694/f5456348d902f6bae92462bbed694e78 to your computer and use it in GitHub Desktop.
Manifest file for a UWP packaging project using the run on startup extension
<?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" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap mp rescap desktop">
<Identity Name="26577SergioPedri.OneLocker" Publisher="CN=46C587B2-48EE-4200-9544-40C64534E565" Version="50240.2018.1113.0" />
<Properties>
<DisplayName>OneLocker Password Manager</DisplayName>
<PublisherDisplayName>Sergio Pedri</PublisherDisplayName>
<Logo>Images\NewStoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
<uap:VisualElements DisplayName="OneLocker" Description="OneLocker for Windows 10" BackgroundColor="transparent" Square150x150Logo="Images\Square150x150Logo.png" Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" ShortName="OneLocker" Square310x310Logo="Images\Square310x310Logo.png" Square71x71Logo="Images\Square71x71Logo.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo" />
<uap:ShowOn Tile="wide310x150Logo" />
<uap:ShowOn Tile="square310x310Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="Images\SplashScreen.png" BackgroundColor="transparent" />
</uap:VisualElements>
<Extensions>
<desktop:Extension Category="windows.fullTrustProcess" Executable="OneLocker.AutoTyper\OneLocker.AutoTyper.exe" />
<uap:Extension Category="windows.appService">
<uap:AppService Name="AutoTyperConnection" />
</uap:Extension>
<uap:Extension Category="windows.shareTarget">
<uap:ShareTarget>
<uap:SupportedFileTypes>
<uap:SupportsAnyFileType />
</uap:SupportedFileTypes>
<uap:DataFormat>Text</uap:DataFormat>
<uap:DataFormat>Bitmap</uap:DataFormat>
<uap:DataFormat>StorageItems</uap:DataFormat>
<uap:DataFormat>RTF</uap:DataFormat>
<uap:DataFormat>HTML</uap:DataFormat>
</uap:ShareTarget>
</uap:Extension>
<uap:Extension Category="windows.protocol">
<uap:Protocol Name="onelocker" />
</uap:Extension>
<desktop:Extension Category="windows.startupTask" Executable="OneLocker.exe" EntryPoint="Windows.FullTrustApplication">
<desktop:StartupTask TaskId="OneLockerAutoStartupDesktopBridge" Enabled="false" DisplayName="OneLocker" />
</desktop:Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<uap:Capability Name="removableStorage" />
<uap:Capability Name="userAccountInformation" />
<uap:Capability Name="appointments" />
<uap:Capability Name="contacts" />
<rescap:Capability Name="runFullTrust" />
<DeviceCapability Name="microphone" />
<DeviceCapability Name="location" />
<DeviceCapability Name="webcam" />
<DeviceCapability Name="proximity" />
</Capabilities>
</Package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment