Class Library in .Net 2.0

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?
 
C

Chris Mullins

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top