|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | + |
| 3 | +<Package |
| 4 | + xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" |
| 5 | + xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" |
| 6 | + xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" |
| 7 | + IgnorableNamespaces="uap rescap"> |
| 8 | + |
| 9 | + <Identity |
| 10 | + Name="F91A4766-67A8-413B-A652-7D2B96EEE218" |
| 11 | + Publisher="CN=User Name" |
| 12 | + Version="1.0.0.0" /> |
| 13 | + |
| 14 | + <Properties> |
| 15 | + <DisplayName>Tests Sample</DisplayName> |
| 16 | + <PublisherDisplayName>Microsoft</PublisherDisplayName> |
| 17 | + <Logo>appiconStoreLogo.png</Logo> |
| 18 | + </Properties> |
| 19 | + |
| 20 | + <Dependencies> |
| 21 | + <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
| 22 | + <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
| 23 | + </Dependencies> |
| 24 | + |
| 25 | + <Resources> |
| 26 | + <Resource Language="x-generate"/> |
| 27 | + </Resources> |
| 28 | + |
| 29 | + <Applications> |
| 30 | + <Application Id="App" |
| 31 | + Executable="$targetnametoken$.exe" |
| 32 | + EntryPoint="$targetentrypoint$"> |
| 33 | + <uap:VisualElements |
| 34 | + DisplayName="Tests Sample" |
| 35 | + Description="Tests Sample" |
| 36 | + BackgroundColor="transparent" |
| 37 | + Square150x150Logo="appiconMediumTile.png" |
| 38 | + Square44x44Logo="appiconLogo.png"> |
| 39 | + <uap:DefaultTile |
| 40 | + Wide310x150Logo="appiconWideTile.png" |
| 41 | + Square71x71Logo="appiconSmallTile.png" |
| 42 | + Square310x310Logo="appiconLargeTile.png" |
| 43 | + ShortName="Tests Sample"> |
| 44 | + <uap:ShowNameOnTiles> |
| 45 | + <uap:ShowOn Tile="square150x150Logo"/> |
| 46 | + <uap:ShowOn Tile="wide310x150Logo"/> |
| 47 | + </uap:ShowNameOnTiles> |
| 48 | + </uap:DefaultTile > |
| 49 | + <uap:SplashScreen Image="appiconfgSplashScreen.png" /> |
| 50 | + </uap:VisualElements> |
| 51 | + </Application> |
| 52 | + </Applications> |
| 53 | + |
| 54 | + <Capabilities> |
| 55 | + <rescap:Capability Name="runFullTrust" /> |
| 56 | + </Capabilities> |
| 57 | + |
| 58 | +</Package> |
0 commit comments