MonoDevelop Addins: hello world, .addin.xml improvements, addin-project.xml and READM...
[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     id          = "MonoDevelop.HelloWorld"
19     namespace   = "MonoDevelop.HelloWorld"
20     version     = "1.0">
21
22     <Header>
23         <Name>Hello World Addin</Name>
24         <Name locale="ca-ES">Hola Món Addin</Name>
25         <Name locale="de-DE">Hallo Welt Addin</Name>
26         <Name locale="es-ES">Hola Mundo Addin</Name>
27         <Author>Gustavo Martin Morcuende</Author>
28         <Copyright>Apache License, Version 2</Copyright>
29         <Url>http://gumartinm.name</Url>
30         <Description>Just a simple Addin for MonoDevelopment IDE</Description>
31         <Category>HelloWorld Category</Category>
32         <UpdateRank>Important</UpdateRank>
33         <ReleaseNotes>
34             {{1.0, 2015-01-11}}
35             Release notes for 1.0: My first MonoDevelop Addin.
36         </ReleaseNotes>
37     </Header>
38
39     <Runtime>
40     </Runtime>
41     <Extension path = "/MonoDevelop/Ide/Commands">
42        <Command id = "MonoDevelop.HelloWorld.Commands.ShowFiles"
43                  _label = "Show Files in Project"
44                  description = "Show Files in Project"
45                  defaultHandler = "MonoDevelop.HelloWorld.ShowFilesCommandHandler" />
46     </Extension>
47
48     <Extension path = "/MonoDevelop/Ide/MainMenu">
49         <ItemSet id = "HelloWorld" _label = "Hello World" insertafter = "Run" >
50             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles" />
51             <SeparatorItem/>
52             <CommandItem id = "MonoDevelop.HelloWorld.Commands.ShowFiles"/>
53         </ItemSet>
54     </Extension>
55
56 </Addin>
57