Custom Node Class Remapping

Hi,

I don’t know what is wrong with my DynamoCustomization.xml, I have remapped the namespace of the package but unfortunately, the remapping in the classes is not reflected. Am I doing something wrong here?

My class looks like this:


namespace ZeroTouchProject {
    public static class HelloDynamo {
        public static string SayHello(string name) {
            return String.Format("Hello {0}!", name);
        }
    }
}

In my experience, the class remapping does not work.

1 Like

Thank you. I haven’t found similar topics in the internet, I thought I was the only one experiencing this problem.

-biboy

2 Likes

Oh, I found those topics buts, I didn’t see the class mapping in the topic/main post that is why I ignored mostly. Anyways, thank you again.