I have a multi-project .NET 3.5 solution.
It's ASP.NET based with c# code-behind in all projects except one.
I'm attempting to access members from a C# project called "Core" from a VB.NET project.
I set a dependency to the Core solution in my solution properties.
However, Core. brings up nothing.
Furthermore, my other C# projects that have Core-Project as a dependency (in the solution settings), are able to declare Core objects. Example: Private Core.ObjectName InstanceName; Also, Intellisense brings up plenty of info in the C# projects.
Any idea on how I can hook into these members from my VB project?
Thanks!