Is it possible to make internal classes from my assembly visible to other assemblies?
I know about the AssemblyInfo file and the [assembly: InternalsVisibleTo()]
attribute, but it doesn't work in my case.
The main purpose is to make it possible to call methods from LINQPAD, so this [assembly: InternalsVisibleTo("LINQPad")]
doesn't work. I don't know why. In my project, I'm using dependency resolver, and it is hard to do such a thing in LINQPAD. Any suggestions?