limitations under the License.
-->
<Addin
- name = "Hello World Addin"
id = "MonoDevelop.HelloWorld"
namespace = "MonoDevelop.HelloWorld"
- author = "Gustavo Martin Morcuende"
- copyright = "Apache License, Version 2"
- url = "http://gumartinm.name"
- description = "Just a simple Addin for MonoDevelopment IDE"
- category = "HelloWorld Category"
version = "1.0">
+ <Header>
+ <Name>Hello World Addin</Name>
+ <Name locale="ca-ES">Hola Món Addin</Name>
+ <Name locale="de-DE">Hallo Welt Addin</Name>
+ <Name locale="es-ES">Hola Mundo Addin</Name>
+ <Author>Gustavo Martin Morcuende</Author>
+ <Copyright>Apache License, Version 2</Copyright>
+ <Url>http://gumartinm.name</Url>
+ <Description>Just a simple Addin for MonoDevelopment IDE</Description>
+ <Category>HelloWorld Category</Category>
+ <UpdateRank>Important</UpdateRank>
+ <ReleaseNotes>
+ {{1.0, 2015-01-11}}
+ Release notes for 1.0: My first MonoDevelop Addin.
+ </ReleaseNotes>
+ </Header>
+
<Runtime>
</Runtime>
<Extension path = "/MonoDevelop/Ide/Commands">
--- /dev/null
+1. Create Addin:
+
+xbuild (MonoDevelop.HelloWorld.sln being in the same path)
+
+
+2. Packaging an add-in, from: http://www.monodevelop.com/developers/articles/publishing-an-addin/
+
+mdtool setup pack MonoDevelop.HelloWorld/bin/Release/MonoDevelop.HelloWorld.dll
+
+(it creates a .mpack file) MonoDevelop.HelloWorld.MonoDevelop.HelloWorld_1.0.mpack (it can be installed from the MonoDevelop GUI.
+
+
+3. The installed Addins from the GUI are located in: ~/.local/share/MonoDevelop-5.0/LocalInstall/Addins/
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+ Copyright 2015 Gustavo Martin Morcuende
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<AddinProject appVersion="5.0">
+ <Project platforms="Mac Linux Win32">
+ <AddinFile>MonoDevelop.HelloWorld/bin/Release/MonoDevelop.HelloWorld.dll</AddinFile>
+ <BuildFile>MonoDevelop.HelloWorld.sln</BuildFile>
+ <BuildConfiguration>Release</BuildConfiguration>
+ </Project>
+</AddinProject>