Browse Source

Addin: Port VSIX manifest to v1 to enable installation on VS2010

pull/513/head
Schabse Laks 11 years ago committed by SLaks
parent
commit
32904d9356
  1. 48
      ILSpy.AddIn/source.extension.vsixmanifest

48
ILSpy.AddIn/source.extension.vsixmanifest

@ -1,20 +1,32 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011"> <Vsix Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
<Metadata> <Identifier Id="a9120dbe-164a-4891-842f-fb7829273838">
<Identity Id="a9120dbe-164a-4891-842f-fb7829273838" Version="1.0" Language="en-US" Publisher="IC#Code" /> <Name>ILSpy</Name>
<DisplayName>ILSpy</DisplayName> <Author>IC#Code</Author>
<Description>Integration of the ILSpy Decompiler into Visual Studio.</Description> <Version>1.0</Version>
<License>license.txt</License> <Description xml:space="preserve">Integrates the ILSpy decompiler into Visual Studio.</Description>
<Icon>ILSpy-Large.ico</Icon> <Icon>ILSpy-Large.ico</Icon>
</Metadata> <License>license.txt</License>
<Installation InstalledByMsi="false"> <!--TODO: <PreviewImage>~200px image</PreviewImage>-->
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[12.0]" /> <MoreInfoUrl>http://ilspy.net</MoreInfoUrl>
</Installation> <Locale>1033</Locale>
<Dependencies> <SupportedFrameworkRuntimeEdition MinVersion="4.5" MaxVersion="6.0"/>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> <SupportedProducts>
<Dependency Id="Microsoft.VisualStudio.MPF.12.0" DisplayName="Visual Studio MPF 12.0" d:Source="Installed" Version="[12.0]" /> <VisualStudio Version="10.0">
</Dependencies> <Edition>Pro</Edition>
<Assets> </VisualStudio>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" /> <VisualStudio Version="11.0">
</Assets> <Edition>Pro</Edition>
</PackageManifest> </VisualStudio>
<VisualStudio Version="12.0">
<Edition>Pro</Edition>
</VisualStudio>
<VisualStudio Version="14.0">
<Edition>Pro</Edition>
</VisualStudio>
</SupportedProducts>
</Identifier>
<Content>
<VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage>
</Content>
</Vsix>

Loading…
Cancel
Save