Calling C# Namespace from Boo

I have a C# library I am attempting to use from Boo.

I have imported it all into my project, however, Boo doesn’t seem to see the Namespace and hence none of the members of the namespace. This is not a DLL, just code. Calling the same items from a C# script works fine as you’d expect.

Any suggestions?

Sounds like the usual JS/C# compilation order dependency problem. Either research that for the best solution, or move your C# library code to a folder named “Plugins”, which will cause it to be compiled first, so the Boo scripts will know about the classes.