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?

Signature
Arne Garvander
Certified Geek
Chris Mullins - 06 Mar 2006 20:29 GMT
> 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.

Signature
Chris Mullins