72210c110d59957f74e73b9b5c995d3779072e46
[CSharpForFun/.git] / MonoDevelop / addins / MonoDevelop.HelloWorld / MonoDevelop.HelloWorld / MonoDevelop.HelloWorld.addin.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3   Copyright 2015 Gustavo Martin Morcuende
4
5   Licensed under the Apache License, Version 2.0 (the "License");
6   you may not use this file except in compliance with the License.
7   You may obtain a copy of the License at
8
9   http://www.apache.org/licenses/LICENSE-2.0
10
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   See the License for the specific language governing permissions and
15  limitations under the License.
16 -->
17 <Addin
18     name        = "Hello World Addin"
19     id          = "MonoDevelop.HelloWorld"
20     namespace   = "MonoDevelop.HelloWorld"
21     author      = "Gustavo Martin Morcuende"
22     copyright   = "Apache License, Version 2"
23     url         = "http://gumartinm.name"
24     description = "Just a simple Addin for MonoDevelopment IDE"
25     category    = "HelloWorld Category"
26     version     = "1.0">
27
28     <Runtime>
29     </Runtime>
30     <Extension path = "/MonoDevelop/Ide/Commands">
31        <Command id = "MonoDevelop.HelloWorld.Commands.ShowFiles"
32                  _label = "Show Files in Project"
33                  description = "Show Files in Project"
34                  defaultHandler = "MonoDevelop.HelloWorld.ShowFilesCommandHandler" />
35     </Extension>
36
37     <Extension path = "/MonoDevelop/Ide/MainMenu">
38         <ItemSet id = "HelloWorld" _label = "Hello World" insertafter = "Run" >
39             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles" />
40             <SeparatorItem/>
41             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles"/>
42         </ItemSet>
43     </Extension>
44
45 </Addin>
46