Hi!
I created a new MDG that defines a new toolbox and assign it to a custom diagram. In Ea, when I create a new diagram, i can select my new technology and i haven't any problem, but when i create a diagram from an addin only the called "Custom" toolbox are shown, not my custom toolbox:

The way I create the diagram is:
EA.Diagram diagram = thePackage.Diagrams.AddNew(diagramName, "DevOpsMDG::DevOps");
diagram.Update();
And in my MDG file I have:
<Stereotype name="DevOps " alias="DevOps" notes="Custom MDG" cx="386" cy="88" bgcolor="-1" fontcolor="-1" bordercolor="-1" borderwidth="-1" hideicon="0">
<AppliesTo>
<Apply type="Diagram_Custom">
<Property name="alias" value="DevOps"/>
<Property name="diagramID" value="DevOps"/>
<Property name="toolbox" value="DevOps"/>
</Apply>
</AppliesTo>
</Stereotype>
I think the problem must be in one of this codes. Anyone know what I'm doing wrong?
Greetings.