-
Notifications
You must be signed in to change notification settings - Fork 7
/
appxmanifest.xml
53 lines (49 loc) · 1.65 KB
/
appxmanifest.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
48
49
50
51
52
53
<?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:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
IgnorableNamespaces="uap3">
<Identity
Name="替换字体的中文部分为雅黑"
Publisher="SunTY"
Version="0.7.54.28" /> <!-- UPDATE IDENTITY -->
<Properties>
<DisplayName>替换字体的中文部分为雅黑</DisplayName>
<PublisherDisplayName>替换字体的中文部分为雅黑</PublisherDisplayName> <!-- UPDATE PLUBLISHER DISPLAY NAME -->
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14287.0" MaxVersionTested="12.0.0.0" />
</Dependencies>
<Resources>
{Resources}
</Resources>
<Applications>
<Application Id="App">
<uap:VisualElements
AppListEntry="none"
DisplayName="替换字体的中文部分为雅黑"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="{Description}"
BackgroundColor="transparent">
</uap:VisualElements>
<Extensions>
<uap3:Extension Category="windows.appExtension">
<uap3:AppExtension
Name="com.microsoft.edge.extension"
Id="EdgeExtension"
PublicFolder="Extension"
DisplayName="替换字体的中文部分为雅黑">
<uap3:Properties>
<Capabilities>
{Capabilities}
</Capabilities>
</uap3:Properties>
</uap3:AppExtension>
</uap3:Extension>
</Extensions>
</Application>
</Applications>
</Package>