Skip to content

Instantly share code, notes, and snippets.

@fushnisoft
Last active May 18, 2018 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fushnisoft/d4c364c115459f51aa8901710a0a5e77 to your computer and use it in GitHub Desktop.
Save fushnisoft/d4c364c115459f51aa8901710a0a5e77 to your computer and use it in GitHub Desktop.
Save this xml to a file (clarionhub.addin) in %cwroot%\accessory\addins\ and you will have a clarionhub link in your IDE menu!
<AddIn name = "ClarionHubMenu"
author = "ClarionHub"
url = "http://clarionhub.com"
copyright = ""
description = "">
<Manifest>
<Identity name="ClarionHubMenu.Addin" version="1.0"/>
<Dependency addin = "SharpDevelop" version = "2.1"/>
</Manifest>
<Path name = "/SharpDevelop/Workbench/MainMenu/Help">
<MenuItem id = "SeparatorAccessory1" type = "Separator" insertbefore = "About"/>
<MenuItem id = "ClarionHubMenuItem"
icon = "Icons.16x16.WebSearchIcon"
link = "https://clarionhub.com"
label = "ClarionHub!"
insertbefore = "About"/>
<MenuItem id = "SeparatorAccessory2" type = "Separator" insertbefore = "About"/>
</Path>
</AddIn>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment