Skip to content

Instantly share code, notes, and snippets.

@akeeton
Last active November 2, 2021 19:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save akeeton/18db2d9c2bc6c97756bd70d3af252a26 to your computer and use it in GitHub Desktop.
Save akeeton/18db2d9c2bc6c97756bd70d3af252a26 to your computer and use it in GitHub Desktop.
extension.vsixmanifest for Custom Document Well extension for Visual Studio 2019
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011">
<Metadata>
<Identity Id="CustomDocumentWell.ae5b5116-8be8-42af-ae24-212ccb14b1a6" Version="15.0.6" Language="en-US" Publisher="Microsoft" />
<DisplayName>Custom Document Well</DisplayName>
<Description xml:space="preserve">Provides configurable behavior for the document well in Visual Studio.</Description>
<MoreInfo>https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.CustomDocumentWell</MoreInfo>
<License>EULA.rtf</License>
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
<Icon>CustomDocumentWell_icon_90x.png</Icon>
</Metadata>
<Installation InstalledByMsi="false">
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" />
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" Version="4.5" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" Path="CustomDocWell.pkgdef" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" />
</Prerequisites>
</PackageManifest>
{
"dependencies": {
"Microsoft.VisualStudio.Component.CoreEditor": "15.0"
},
"extensionDir": "[installdir]\\Common7\\IDE\\Extensions\\gitx5x5a.eff",
"files": [
{
"fileName": "/extension.vsixmanifest",
"sha256": "616F4EFCC35879AB80ADFA280FE03993B1104B0BD974CE45BC4DE15A2CAB6034"
},
{
"fileName": "/CustomDocWell.dll",
"sha256": "857F0B98D776E5C56A85A9A1D5C4CC53540ED6749EA53EC0644A501882407D9D"
},
{
"fileName": "/CustomDocWell.pkgdef",
"sha256": "977C6E3C6EE4354AB2D3E3F0D9BA3E4DA88771F4F089853A1E5768F2B901F237"
},
{
"fileName": "/ReleaseNotes.txt",
"sha256": "45D7716AEF9AB8F5ED27B6F49C93A75564A3966EA1496AB2EFD6BF375509769D"
},
{
"fileName": "/CustomDocumentWell_icon_90x.png",
"sha256": "351FC9313D61D3882691B1F7DA3DE7DD40BEBEC92D8A9C94703042ED8838FA5F"
},
{
"fileName": "/EULA.rtf",
"sha256": "3576426FB239A21122FE0D94379693A2B515727CC812EEA8298D239C29733DD9"
}
],
"id": "CustomDocumentWell.ae5b5116-8be8-42af-ae24-212ccb14b1a6",
"installSize": 388391,
"type": "Vsix",
"version": "15.0.6",
"vsixId": "CustomDocumentWell.ae5b5116-8be8-42af-ae24-212ccb14b1a6"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment