ExplicitNode shows System and Dynamo as a node

Hi there,
I am setting up a library and everything was working correctly until the point Dynamo and System start to appear as part of the library.
I checked the new dll with the previous ones and are the same. Any ideas @john_pierson, why this happen?
Thanks.

What’s your code look like?

I think I’ve avoided this by marking certain classes private.



I used [IsVisibleInDynamoLibrary(false)]

Hmm. Let me take a look first thing in the morning. Thanks for sharing the code

Found the problem.
I was missing the public constructor for the AboutSandbox class!!
:sob:

1 Like

oh cool! Glad you got it worked out! Thanks for sharing the solution too.

I didn’t notice I was missing it because I was previous wrapping NodeModel in an abstract class that was meant to be the base for the nodes, but I removed it and I forgot the public ctor ahahah
Next time I’ll remember :slight_smile:

1 Like