Link to home
Start Free TrialLog in
Avatar of Larry Brister
Larry BristerFlag for United States of America

asked on

DLL pdb files

I have a solution that has 5 seperate projects.

4 of the 5 projects build dlls into the main intranet Bin folder.

When they do that...the (DLLNAME).pdb comes along.

It doesn't cause any harm...but since we're using Tortoise SVN,,,it shows up as a red point.

Does the pdb HAVE to build?  Any way to exclude it in the build...or do I just have to do that in the SVN exclude?
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nativ
nativ

1. I'm pretty sure that if you change your "Build Configuration" to "Release" (change in the dropdown, or in the project properties.) then the debug info will not be created.
2. Of course, you want to debug your code you need to be build with the "Debug Info"
 User generated image
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Larry Brister

ASKER

Perfect...thanks