mirror of https://github.com/icsharpcode/ILSpy.git
4 changed files with 164 additions and 57 deletions
@ -0,0 +1,58 @@ |
|||||||
|
<?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="1.0.0.0" /> |
||||||
|
|
||||||
|
<Properties> |
||||||
|
<DisplayName>ILSpy (CI)</DisplayName> |
||||||
|
<PublisherDisplayName>ICSharpCode</PublisherDisplayName> |
||||||
|
<Logo>Images\StoreLogo.png</Logo> |
||||||
|
</Properties> |
||||||
|
|
||||||
|
<Dependencies> |
||||||
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.16299.0" MaxVersionTested="10.0.18362.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: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> |
@ -0,0 +1,58 @@ |
|||||||
|
<?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.Local" |
||||||
|
Publisher="CN=ICSharpCode" |
||||||
|
Version="1.0.0.0" /> |
||||||
|
|
||||||
|
<Properties> |
||||||
|
<DisplayName>ILSpy (Local)</DisplayName> |
||||||
|
<PublisherDisplayName>ICSharpCode</PublisherDisplayName> |
||||||
|
<Logo>Images\StoreLogo.png</Logo> |
||||||
|
</Properties> |
||||||
|
|
||||||
|
<Dependencies> |
||||||
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.16299.0" MaxVersionTested="10.0.18362.0" /> |
||||||
|
</Dependencies> |
||||||
|
|
||||||
|
<Resources> |
||||||
|
<Resource Language="x-generate"/> |
||||||
|
</Resources> |
||||||
|
|
||||||
|
<Applications> |
||||||
|
<Application Id="App" |
||||||
|
Executable="$targetnametoken$.exe" |
||||||
|
EntryPoint="$targetentrypoint$"> |
||||||
|
<uap:VisualElements |
||||||
|
DisplayName="ILSpy (Local)" |
||||||
|
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: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="ilspyl.exe" /> |
||||||
|
</uap3:AppExecutionAlias> |
||||||
|
</uap3:Extension> |
||||||
|
</Extensions> |
||||||
|
</Application> |
||||||
|
</Applications> |
||||||
|
|
||||||
|
<Capabilities> |
||||||
|
<Capability Name="internetClient" /> |
||||||
|
<rescap:Capability Name="runFullTrust" /> |
||||||
|
</Capabilities> |
||||||
|
</Package> |
Loading…
Reference in new issue