-
Notifications
You must be signed in to change notification settings - Fork 7
/
AppxManifest.template.xml
47 lines (45 loc) · 2.87 KB
/
AppxManifest.template.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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" IgnorableNamespaces="uap mp build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
<!--
此包清单文件由生成过程生成。
如果重新生成此文件,将丢失对其所做的更改。若要更正此文件中的错误,请编辑源 .appxmanifest 文件。
有关程序包清单文件的详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkID=241727
-->
<Identity Name="56263bdbai.FirstUWPinRust" Publisher="CN=E18F459A-56CA-490C-9E8B-6892A762C635" Version="0.0.1.0" ProcessorArchitecture="$arch$" />
<mp:PhoneIdentity PhoneProductId="1924d98f-4085-44e1-b21f-dfbdc3627e8b" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>First UWP in Rust</DisplayName>
<PublisherDisplayName>bdbai</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.18362.0" />
<PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.27810.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>
<Resources>
<Resource Language="EN-US" />
</Resources>
<Applications>
<Application Id="App" Executable="$exe_prefix$app.exe" EntryPoint="FirstUwp.App">
<uap:VisualElements DisplayName="First UWP in Rust" Description="First UWP written in rust" Square44x44Logo="Assets\Square44x44Logo.png" Square150x150Logo="Assets\Square150x150Logo.png" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"></uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
<!--build:Metadata>
<build:Item Name="cl.exe" Version="19.25.28611.0 built by: vcwrkspc" />
<build:Item Name="VisualStudio" Version="16.0" />
<build:Item Name="VisualStudioEdition" Value="Microsoft Visual Studio Community 2019" />
<build:Item Name="OperatingSystem" Version="10.0.18362.836 (WinBuild.160101.0800)" />
<build:Item Name="Microsoft.Build.AppxPackage.dll" Version="16.0.29903.111" />
<build:Item Name="ProjectGUID" Value="{93b45628-75cc-4c76-8f10-bbc43d308ab4}" />
<build:Item Name="OptimizingToolset" Value="None" />
<build:Item Name="TargetRuntime" Value="Native" />
<build:Item Name="Microsoft.Windows.UI.Xaml.Build.Tasks.dll" Version="10.0.18362.1" />
<build:Item Name="MakePri.exe" Version="10.0.18362.1 (WinBuild.160101.0800)" />
</build:Metadata-->
</Package>