MonoDevelop: Addin generation issues
- by calmcajun
I am having problems creating the root.mrep file for a updated MonoDevelop Addin. The Addin was originally built for MonoDevelop 2.2. I am able to build the updated project but when I use mdrun.exe setup rep-build to generate the .mrep files(main and root) it only generates the main.mrep file and not the root.mrep file. Is there a new way of building the addin that I am missing? I used both setup pack and then setup rep-build. I have listed a snippet of the addin.xml file below:
<Addin id = "Addin"
namespace = "MonoDevelop"
name = "Monobjc development"
author = "Rob L"
copyright = ""
description = "Addin"
category = "Mac Development"
version = "1.0">
<Runtime>
<Import assembly="MonoDevelop.Sample.dll" />
<Import assembly="MonoDevelop.MacDev.dll" />
<Import assembly="Sample.Tools.dll" />
</Runtime>
<Dependencies>
<Addin id="Core" version="2.4" />
<Addin id="Core.Gui" version="2.4" />
<Addin id="Projects" version="2.4" />
<Addin id="Projects.Gui" version="2.4" />
<Addin id="Ide" version="2.4" />
</Dependencies>
<MoreStuffHere />
</Addin>