-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppXManifest.Template.xml
37 lines (37 loc) · 1.49 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
<?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">
<Identity Name="--REDACTED--"
ProcessorArchitecture="x64"
Publisher="--REDACTED--"
Version="1.0.0.0" />
<Properties>
<DisplayName>Ip Changer</DisplayName>
<PublisherDisplayName>--REDACTED--</PublisherDisplayName>
<Description>A GUI based tool to change IP addresses on Windows</Description>
<Logo>assets\icons\mstile.50x50.png</Logo>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust"/>
</Capabilities>
<Applications>
<Application Id="IpChanger" Executable="app\IpChanger.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
BackgroundColor="#464646"
DisplayName="Ip Changer"
Square150x150Logo="assets\icons\mstile.150x150.png"
Square44x44Logo="assets\icons\mstile.44x44.png"
Description="A GUI based tool to change IP addresses on Windows">
<uap:DefaultTile Wide310x150Logo="assets\icons\mstile.310x150.png" />
</uap:VisualElements>
</Application>
</Applications>
</Package>