.vsixmanifest 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 Language="en-US" Id="grep-panel" Version="0.0.4" Publisher="chrisjdavies" />
  5. <DisplayName>Grep Panel</DisplayName>
  6. <Description xml:space="preserve">Keep Grep/Ripgrep results in a panel.</Description>
  7. <Tags>grep,ripgrep,search,panel</Tags>
  8. <Categories>Other</Categories>
  9. <GalleryFlags>Public</GalleryFlags>
  10. <Properties>
  11. <Property Id="Microsoft.VisualStudio.Code.Engine" Value="^1.83.0" />
  12. <Property Id="Microsoft.VisualStudio.Code.ExtensionDependencies" Value="" />
  13. <Property Id="Microsoft.VisualStudio.Code.ExtensionPack" Value="" />
  14. <Property Id="Microsoft.VisualStudio.Code.ExtensionKind" Value="workspace" />
  15. <Property Id="Microsoft.VisualStudio.Code.LocalizedLanguages" Value="" />
  16. <Property Id="Microsoft.VisualStudio.Services.Links.Source" Value="https://github.com/chrisjdavies/vscode-grep-panel.git" />
  17. <Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="https://github.com/chrisjdavies/vscode-grep-panel.git" />
  18. <Property Id="Microsoft.VisualStudio.Services.Links.GitHub" Value="https://github.com/chrisjdavies/vscode-grep-panel.git" />
  19. <Property Id="Microsoft.VisualStudio.Services.Links.Support" Value="https://github.com/chrisjdavies/vscode-grep-panel/issues" />
  20. <Property Id="Microsoft.VisualStudio.Services.Links.Learn" Value="https://github.com/chrisjdavies/vscode-grep-panel" />
  21. <Property Id="Microsoft.VisualStudio.Services.GitHubFlavoredMarkdown" Value="true" />
  22. <Property Id="Microsoft.VisualStudio.Services.Content.Pricing" Value="Free"/>
  23. </Properties>
  24. <License>extension/LICENSE.txt</License>
  25. <Icon>extension/images/icon.png</Icon>
  26. </Metadata>
  27. <Installation>
  28. <InstallationTarget Id="Microsoft.VisualStudio.Code"/>
  29. </Installation>
  30. <Dependencies/>
  31. <Assets>
  32. <Asset Type="Microsoft.VisualStudio.Code.Manifest" Path="extension/package.json" Addressable="true" />
  33. <Asset Type="Microsoft.VisualStudio.Services.Content.Details" Path="extension/README.md" Addressable="true" />
  34. <Asset Type="Microsoft.VisualStudio.Services.Content.Changelog" Path="extension/CHANGELOG.md" Addressable="true" />
  35. <Asset Type="Microsoft.VisualStudio.Services.Content.License" Path="extension/LICENSE.txt" Addressable="true" />
  36. <Asset Type="Microsoft.VisualStudio.Services.Icons.Default" Path="extension/images/icon.png" Addressable="true" />
  37. </Assets>
  38. </PackageManifest>