Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <Metadata>
  4. <Identity Id="ae98c9e5-8e14-4c92-b45a-c4fd24a49123" Version="1.0" Language="en-US" Publisher="whosoever" />
  5. <DisplayName>MyExtension</DisplayName>
  6. <Description xml:space="preserve">whosoever</Description>
  7. <MoreInfo>http://www.myextension.com</MoreInfo>
  8. <License>LICENSE.txt</License>
  9. <Icon>icon.png</Icon>
  10. <PreviewImage>screenshot.png</PreviewImage>
  11. </Metadata>
  12. <Installation InstalledByMsi="false">
  13. <InstallationTarget Version="[10.0,13.0)" Id="Microsoft.VisualStudio.Pro" />
  14. </Installation>
  15. <Dependencies>
  16. <Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="4.5" />
  17. <Dependency Id="Microsoft.VisualStudio.MPF.11.0" DisplayName="Visual Studio MPF 11.0" d:Source="Installed" Version="11.0" />
  18. </Dependencies>
  19. <Assets>
  20. <Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
  21. </Assets>
  22. </PackageManifest>
  23.  
  24. <?xml version="1.0" encoding="utf-8"?>
  25. <Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
  26. <Identifier Id="ae98c9e5-8e14-4c92-b45a-c4fd24a49123">
  27. <Name>MyExtension</Name>
  28. <Author>whosoever</Author>
  29. <Version>1.0</Version>
  30. <Description xml:space="preserve">Your decription.</Description>
  31. <Locale>1033</Locale>
  32. <SupportedProducts>
  33. <VisualStudio Version="10.0">
  34. <Edition>Pro</Edition>
  35. </VisualStudio>
  36. <VisualStudio Version="11.0">
  37. <Edition>Pro</Edition>
  38. </VisualStudio>
  39. <VisualStudio Version="12.0">
  40. <Edition>Pro</Edition>
  41. </VisualStudio>
  42. </SupportedProducts>
  43. <SupportedFrameworkRuntimeEdition MinVersion="4.0" />
  44. </Identifier>
  45. <Content>
  46. <VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage>
  47. <MefComponent>|%CurrentProject%|</MefComponent>
  48. </Content>
  49. </Vsix>
  50.  
  51. <?xml version="1.0" encoding="utf-8"?>
  52. <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">
  53. <Metadata>
  54. <Identity Id="mycode_VSIX..ef28de0e-4401-47ec-8d35-eb2d91b3f8f1" Version="1.0" Language="en-US" Publisher="mypublisher" />
  55. <DisplayName>mycode_VSIX</DisplayName>
  56. <Description>Empty VSIX Project.</Description>
  57. <Icon>my-icon.png</Icon>
  58. <PreviewImage>my-icon.png</PreviewImage>
  59. </Metadata>
  60. <Installation>
  61. <InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[10.0]" />
  62. <InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[12.0,)" />
  63. </Installation>
  64. <Dependencies>
  65. <Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.0,)" d:InstallSource="Download" Location="http://www.microsoft.com/en-us/download/details.aspx?id=17851" />
  66. </Dependencies>
  67. <Assets>
  68. <Asset Type="Microsoft.VisualStudio.ProjectTemplate" d:Source="File" Path="ProjectTemplates" d:TargetPath="ProjectTemplatesmycodeaddin_2013.zip" />
  69. </Assets>
  70. </PackageManifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement