hmmmm.... No .pdb file is being created. I'm not creating a .DLL here. This is a Web project.
Should a .pdb be created for a Web project?
And I see no Configuration Properties under Project properties. I have six tabs -
General
Master Web Server
Dependencies
Launch
Editor Defaults
Appearance
Thanks! I'm getting pretty desperate.
Main Topics
Browse All Topics





by: Andy1988Posted on 2009-05-08 at 09:49:37ID: 24337911
Most likely the [DLLName].pdb file is not getting generated when you build project in Debug mode. Compare the timestamp on [DLLName].pdb file and [DLLName].dll after you rebuild in Debug mode. If they are different try the following to resolve the problem:
1. Go to you project Properties and check Configuration Properties -> Build -> Outputs -> Generate Debugging Information setting. It should be set to True.
2. Try to compile in Debug mode with this setting set to True.
3. Run the project.
Good luck!