Creating Multiple DLLs for from one Visual Studio Solution

liunx

Guest
Hi,

I was playing around in Visual Studio .NET 1.0 and created a webapp solution with 2 projects - one to create a DLL that will be included in the other which is the actual web app.

My question how do i get VS to complie separate DLLs in the BIN directory of the web app ?

What I actually want to attain is to build a server control (the first DLL) and include it in the web APP (which would be the 2nd DLL).

Thanks in Advance,
TukaOpen the web app solution in VS, right click on the project and left click on "Add Reference", click the "Project" tab and find the web control project, select the DLL from the web control and add it to the web app. That's it, you can now see all of the publicly available objects from the web control in your web app.Thanks that worked fine :)
 
Back
Top