vote up 2 vote down star

I am using Castle Windsor for IoC and I want to use Binsor to define my configuration. I want to let my internals be visible to Boo. I have tried to mark my assembly with InternalsVisibleTo("Boo.Lang") but that didn't do the job. I have tried InternalsVisibleTo("Rhino.Commons") because I have noticed that the exception is thrown from within Rhino.Commons.Binsor.BooComponentInstaller but that doesn't work neither. Any ideas?

flag

2 Answers

vote up 1 vote down check

InternalsInvisible isn't available yet in Boo, tried using it in 2007/early 2008 for testing purposes.

There is an issue logged against this in Boo's codehaus page : Boo Issue around this

Seems like it is scheduled to be fixed in V0.9.3

link|flag
vote up 1 vote down

I know neither Windsor nor Binsor, but if you're writing your configuration in a boo file, this is going to be compiled by the boo compiler to its own assembly, and then executed (well, if the compilation went ok).

So ideally you would like to make your assembly InternalsVisibleTo the generated assembly, but I have no idea if Binsor gives you control over its (strong) name. If not, you'll have to make your configuration public.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.