Top "Internalsvisibleto" questions

An attribute in .NET to expose members marked as internal to selected assemblies.

InternalsVisibleTo does not work

I insert the line: [assembly: InternalsVisibleTo("MyTests")] inside my project under test( Properties/AssemblyInfo.cs) where MyTests is the name …

c# internalsvisibleto
InternalsVisibleTo attribute isn't working

I am trying to use the InternalsVisibleTo assembly attribute to make my internal classes in a .NET class library visible …

.net attributes internalsvisibleto
How can I make InternalsVisibleTo attribute work by signing a public token key safely?

I am trying to expose some internals to my unit test project by using: [assembly: InternalsVisibleTo("MyTest")] But I am …

c# .net visual-studio unit-testing internalsvisibleto
InternalsVisibleTo attribute isn't working

Before I go on I did go through this InternalsVisibleTo attribute ain’t workin'! Hence the title Okay so I …

c# visual-studio-2010 reflection assemblies internalsvisibleto