2021-07-01 22:07:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
<Package
|
|
|
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
|
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
|
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
|
|
|
|
IgnorableNamespaces="uap rescap">
|
|
|
|
|
|
|
|
|
|
<Identity
|
2022-11-16 22:55:50 +01:00
|
|
|
Name="XamlMapControl.WinUiApp"
|
2021-07-01 22:07:46 +02:00
|
|
|
Publisher="CN=Clemens"
|
|
|
|
|
Version="1.0.0.0" />
|
|
|
|
|
|
|
|
|
|
<Properties>
|
2021-11-17 21:23:29 +01:00
|
|
|
<DisplayName>WinUiApp</DisplayName>
|
2021-07-01 22:07:46 +02:00
|
|
|
<PublisherDisplayName>Clemens</PublisherDisplayName>
|
2021-11-17 21:23:29 +01:00
|
|
|
<Logo>Assets\StoreLogo.png</Logo>
|
2021-07-01 22:07:46 +02:00
|
|
|
</Properties>
|
|
|
|
|
|
|
|
|
|
<Dependencies>
|
|
|
|
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
|
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
|
|
|
</Dependencies>
|
|
|
|
|
|
|
|
|
|
<Resources>
|
|
|
|
|
<Resource Language="x-generate"/>
|
|
|
|
|
</Resources>
|
|
|
|
|
|
|
|
|
|
<Applications>
|
|
|
|
|
<Application Id="App"
|
|
|
|
|
Executable="$targetnametoken$.exe"
|
|
|
|
|
EntryPoint="$targetentrypoint$">
|
|
|
|
|
<uap:VisualElements
|
2025-09-14 21:02:21 +02:00
|
|
|
DisplayName="XAML Map Control WinUI Test Application"
|
2021-12-05 17:16:14 +01:00
|
|
|
Description="SampleApplication"
|
2021-07-01 22:07:46 +02:00
|
|
|
BackgroundColor="transparent"
|
2021-11-17 21:23:29 +01:00
|
|
|
Square150x150Logo="Assets\Square150x150Logo.png"
|
|
|
|
|
Square44x44Logo="Assets\Square44x44Logo.png">
|
|
|
|
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
|
|
|
|
|
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
2021-07-01 22:07:46 +02:00
|
|
|
</uap:VisualElements>
|
|
|
|
|
</Application>
|
|
|
|
|
</Applications>
|
|
|
|
|
|
|
|
|
|
<Capabilities>
|
|
|
|
|
<rescap:Capability Name="runFullTrust" />
|
|
|
|
|
</Capabilities>
|
|
|
|
|
</Package>
|