Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Friend assembly reference 'reference' is invalid. InternalsVisibleTo declarations cannot have a version, culture, public key token, or processor architecture specified.
You cannot add a version culture in a friend assembly reference. Partial classes should be visible to friend assemblies.
Example
The following sample generates CS1725.
// CS1725.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:InternalsVisibleTo("partial01,version=1.1.0.0")] // CS1725
// try the following line instead
// [assembly:InternalsVisibleTo("partial01")]
partial class TestClass
{
public static string strBar = "my string";
}
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.