"Resources" is inaccessible

Hi,

I am trying to recreate a dropdown node of Dynamo but I encountered this error. Anyone know how to fix this?

Thank you in advance.
-biboy

That isn’t a Dynamo thing, but it has to do with the library you are trying to reference has not exposed or made public the class / method / object your trying to access.

1 Like

Hi @SeanP

Thank you, now I eliminated some source of errors I am facing. I will try other ways.

-biboy

@blsalvio @SeanP is correct that DSCoreNodesUI.dll has the resource file set to Internal instead of Public. You can see that in the source code here:

If Resources was Public it would have been set to PublicResXFileCodeGenerator.

Source code link: DynamoRevit/RevitNodesUI.csproj at 98e19ab3ad3a70872b2019603182b5cca4419b79 · DynamoDS/DynamoRevit · GitHub

Cheers!