VB.NET InternalsVisibleTo
To reproduce:
Create a VB.NET class library named ClassLibrary1. Add a single class with only a friend constructor. Add the following attribute to AssemblyInfo.vb:
Assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ClassLibrary2")
Add another VB.NET class library named ClassLibrary2. Add a project reference to ClassLibrary1. Verify that you are able to construct an instance of the above class.
