using class library in web application

  • Thread starter Thread starter Saifee
  • Start date Start date
S

Saifee

Hi,
I have a class library project in which i have made some
classes.I compile it into a dll and reference it in a
asp.net web application.
But each time I make changes in the class library project,
for cahnges to reflect I have to remove the refernce form
the web application and add the refernce again.
Is there a way to directly link the dll to the project.
Pls help

Saifee
 
Saifee said:
Hi,
I have a class library project in which i have made some
classes.I compile it into a dll and reference it in a
asp.net web application.
But each time I make changes in the class library project,
for cahnges to reflect I have to remove the refernce form
the web application and add the refernce again.
Is there a way to directly link the dll to the project.
Pls help

Saifee

You can select on the properties, to not have it copy local.

Rocky Moore
www.HintsAndTips.com
 
Are you using Visual Studio.Net? If so, you can add the Class Library
Project to your ASP.Net Solution, make the reference to the Project rather
than the DLL, and when you make changes to the Class Library Project, it
will be re-copied to the bin folder of the ASP.Net app.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top