Tim
Tim

Reputation: 1661

InternalsVisibleTo causes CS0246 error: The Type or Namespace could not be found

I am trying to enable one assembly to access another assembly's internal classes by adding

[assembly:InternalsVisibleTo("assembly-name")]

to the second assembly. However, this causes the following error:

error CS0246: The type or namespace name 'InternalsVisibleTo' could not be found (are you missing a using directive or an assembly reference?)

I am following the examples here: MSDN Reference

What am I doing wrong?

Upvotes: 4

Views: 1951

Answers (1)

JaredPar
JaredPar

Reputation: 755567

Make sure you import System.Runtime.CompilerServices. Or use a fully qualified name.

[assembly:System.Runtime.CompilerServices.InternalsVisibleTo("assembly-name")]

Upvotes: 13

Related Questions