Class Library in .Net 2.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use a helper class library on my web site.
Under asp.net 1.1 I would only install helper.dll to production.
In the 2.0 framework I get a Helper.pdb and helper.xml when I compile in
release mode.. Do I need to install those in production?
 
Arne Garvander said:
Under asp.net 1.1 I would only install helper.dll to production.
In the 2.0 framework I get a Helper.pdb and helper.xml when I compile in
release mode.. Do I need to install those in production?

You don't need the pdb or xml file in production. The PDB fie is the debug
symbols, and the xml file is the intellisense stuff. Neither one is needed
on the production server.
 
Back
Top