Home
Options

[InternalsVisibleTo("LINQPadQuery")]

I'm trying to reference and assembly I made which contain DynamicLINQ.vb. On the FAQ page instructions are given on how to allow LinqPAD to reference an assembly, and to add the above as an assembly attribute.

How, step by step, do I add the above as an assembly attribute?

Thanks!
Dan

Comments

  • Options
    I've not tried this specifically, but usually you would open up the "AssemblyInfo.cs" of the project that contains the internal classes you want to reference, and then add something like:

    [assembly: InternalsVisibleTo("LINQPadQuery")]

    It doesn't matter where in here it goes. (I don't think it even has to be in assemblyinfo.)
Sign In or Register to comment.