MonoDevelop Addins: hello world
[CSharpForFun/.git] / MonoDevelop / addins / MonoDevelop.HelloWorld / MonoDevelop.HelloWorld / MonoDevelop.HelloWorld.addin.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <Addin
3     name        = "Hello World Addin"
4     id          = "MonoDevelop.HelloWorld"
5     namespace   = "MonoDevelop.HelloWorld"
6     author      = "Gustavo Martin Morcuende"
7     copyright   = "Apache License, Version 2"
8     url         = "http://gumartinm.name"
9     description = "Just a simple Addin for MonoDevelopment IDE"
10     category    = "HelloWorld Category"
11     version     = "1.0">
12
13     <Runtime>
14     </Runtime>
15     <Extension path = "/MonoDevelop/Ide/Commands">
16        <Command id = "MonoDevelop.HelloWorld.Commands.ShowFiles"
17                  _label = "Show Files in Project"
18                  description = "Show Files in Project"
19                  defaultHandler = "MonoDevelop.HelloWorld.ShowFilesCommandHandler" />
20     </Extension>
21
22     <Extension path = "/MonoDevelop/Ide/MainMenu">
23         <ItemSet id = "HelloWorld" _label = "Hello World" insertafter = "Run" >
24             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles" />
25             <SeparatorItem/>
26             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles"/>
27         </ItemSet>
28     </Extension>
29
30 </Addin>
31