Hello all together,
I really need help, because I dont understand how to change the package structure within Dynamo. My goal is to promote my nodes by n levle. Currently it looks like that:
It would be great when all the nodes appear under AssemblyName. But I really tried to figure out how it works but i dont get it. Hope someone can help and explain it to me
the class:
namespace Namespace
{
public class Classname
{
public string name { get; set;}
public Classname(string objectName) {
this.name = objectName;
}
public int calculateNumber(int inputNumber)
{
return inputNumber + 2;
}
(...)
}
}
My package in %AppData%\Dynamo.…
And my library:
This is my _DynamoCustomization.xml:
<?xml version="1.0"?> <doc> <assembly> <name>AssemblyName</name> </assembly> <namespaces> <namespace name="Namespace.Classname"> <category>Namespace</category> </namespace> </namespaces> </doc>
I already checked out the following things and several more:
https://forum.dynamobim.com/t/zero-touch-customization-xml-nesting/30686/4