inraetemplate / INRAETemplate / Platforms / Windows / Package.appxmanifest @ 7b67ff55
Historique | Voir | Annoter | Télécharger (1,819 ko)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<Package |
3 |
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" |
4 |
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" |
5 |
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" |
6 |
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" |
7 |
IgnorableNamespaces="uap rescap"> |
8 |
|
9 |
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" /> |
10 |
|
11 |
<mp:PhoneIdentity PhoneProductId="AC0DF295-13B5-4EB4-94A4-E5E26C4117A5" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> |
12 |
|
13 |
<Properties> |
14 |
<DisplayName>$placeholder$</DisplayName> |
15 |
<PublisherDisplayName>User Name</PublisherDisplayName> |
16 |
<Logo>$placeholder$.png</Logo> |
17 |
</Properties> |
18 |
|
19 |
<Dependencies> |
20 |
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
21 |
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> |
22 |
</Dependencies> |
23 |
|
24 |
<Resources> |
25 |
<Resource Language="x-generate" /> |
26 |
</Resources> |
27 |
|
28 |
<Applications> |
29 |
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$"> |
30 |
<uap:VisualElements |
31 |
DisplayName="$placeholder$" |
32 |
Description="$placeholder$" |
33 |
Square150x150Logo="$placeholder$.png" |
34 |
Square44x44Logo="$placeholder$.png" |
35 |
BackgroundColor="transparent"> |
36 |
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" /> |
37 |
<uap:SplashScreen Image="$placeholder$.png" /> |
38 |
</uap:VisualElements> |
39 |
</Application> |
40 |
</Applications> |
41 |
|
42 |
<Capabilities> |
43 |
<rescap:Capability Name="runFullTrust" /> |
44 |
</Capabilities> |
45 |
|
46 |
</Package> |