Adding another windows forms project, inside a solution...
First of all, I will tell you what I want to happen, and what I have.
Currently, I have a Solution, called 'Lost', inside that solution are 3 things, a .dll project, called Diagnostics, and a Windows Forms Project, called Lost, all of these things are inside the Lost Namespace.
I have the Lost.Lost.program.cs access the Lost.Diagnostics, and it works fine.
But I want this third project, which is a windows forms project, that's called 'Auto Updater'. I tried changing the namespace that this auto updater form project, thats inside the 'Lost' Solution, to Lost, that way all of them use the same namespace, so it makes it easier for me, and simpler to use, but I can't get it to work... Lost.Lost, can't access Lost.frmUpdater, and I don't understand why, I tried adding a dependiciy to it too.

