mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.3 KiB
64 lines
2.3 KiB
<?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" |
|
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" |
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" |
|
IgnorableNamespaces="uap rescap"> |
|
|
|
<Identity |
|
Name="ICSharpCode.ILSpy.CI" |
|
Publisher="CN=ICSharpCode" |
|
Version="$INSERTMAJORVERSION$.$INSERTMINORVERSION$.$INSERTREVISION$.0" /> |
|
|
|
<Properties> |
|
<DisplayName>ILSpy (CI)</DisplayName> |
|
<PublisherDisplayName>CN=ICSharpCode Team</PublisherDisplayName> |
|
<Logo>Images\StoreLogo.png</Logo> |
|
</Properties> |
|
|
|
<Dependencies> |
|
<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 |
|
DisplayName="ILSpy (CI)" |
|
Description=".NET assembly inspector and decompiler" |
|
BackgroundColor="transparent" |
|
Square150x150Logo="Images\Square150x150Logo.png" |
|
Square44x44Logo="Images\Square44x44Logo.png"> |
|
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" Square71x71Logo="Images\SmallTile.png" Square310x310Logo="Images\LargeTile.png"> |
|
<uap:ShowNameOnTiles> |
|
<uap:ShowOn Tile="square150x150Logo" /> |
|
<uap:ShowOn Tile="wide310x150Logo" /> |
|
<uap:ShowOn Tile="square310x310Logo" /> |
|
</uap:ShowNameOnTiles> |
|
</uap:DefaultTile> |
|
<uap:SplashScreen Image="Images\SplashScreen.png" /> |
|
</uap:VisualElements> |
|
|
|
<Extensions> |
|
<uap3:Extension Category="windows.appExecutionAlias" Executable="ILSpy\ILSpy.exe" EntryPoint="Windows.FullTrustApplication"> |
|
<uap3:AppExecutionAlias> |
|
<desktop:ExecutionAlias Alias="ilspyc.exe" /> |
|
</uap3:AppExecutionAlias> |
|
</uap3:Extension> |
|
</Extensions> |
|
</Application> |
|
</Applications> |
|
|
|
<Capabilities> |
|
<Capability Name="internetClient" /> |
|
<rescap:Capability Name="runFullTrust" /> |
|
</Capabilities> |
|
</Package>
|
|
|