| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 | |
| 3 <Package | |
| 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" | |
| 5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" | |
| 6 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" | |
| 7 IgnorableNamespaces="uap3"> | |
| 8 | |
| 9 <Identity | |
| 10 Name="{{package_identity.name}}" | |
| 11 Publisher="{{package_identity.publisher}}" | |
| 12 Version="{{version}}" /> | |
| 13 | |
| 14 <Properties> | |
| 15 <DisplayName>{{display_name}}</DisplayName> | |
| 16 <PublisherDisplayName>{{author}}</PublisherDisplayName> | |
| 17 <Logo>{{logo_50}}</Logo> | |
| 18 </Properties> | |
| 19 | |
| 20 <Dependencies> | |
| 21 <TargetDeviceFamily | |
| 22 Name="Windows.Desktop" | |
| 23 MinVersion="10.0.14332.0" | |
|
Sebastian Noack
2016/07/05 14:30:39
The min and max version should be configured in th
Vasily Kuznetsov
2016/07/07 16:23:51
Done.
| |
| 24 MaxVersionTested="12.0.0.0" /> | |
| 25 </Dependencies> | |
| 26 | |
| 27 <Resources> | |
| 28 <Resource Language="en-us"/> | |
|
Sebastian Noack
2016/07/05 14:30:39
We should localize the manifeat, using the respect
| |
| 29 </Resources> | |
| 30 | |
| 31 <Applications> | |
| 32 <Application Id="App"> | |
| 33 <uap:VisualElements | |
| 34 AppListEntry="none" | |
| 35 DisplayName="{{display_name}}" | |
| 36 Square150x150Logo="{{logo_150}}" | |
| 37 Square44x44Logo="{{logo_44}}" | |
| 38 Description="{{description}}" | |
| 39 BackgroundColor="{{background_color}}"> | |
| 40 </uap:VisualElements> | |
| 41 <Extensions> | |
| 42 <uap3:Extension Category="windows.appExtension"> | |
| 43 <uap3:AppExtension Name="com.microsoft.edge.extension" | |
| 44 Id="{{extension_id}}" | |
| 45 PublicFolder="Extension" | |
| 46 DisplayName="{{display_name}}"> | |
| 47 </uap3:AppExtension> | |
| 48 </uap3:Extension> | |
| 49 </Extensions> | |
| 50 </Application> | |
| 51 </Applications> | |
| 52 | |
| 53 </Package> | |
| OLD | NEW |