Click here to Skip to main content
15,887,897 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi together,

visual studio laods a lot of pdb files into my projectdirectory. how can i prevent vs from that?
Posted
Updated 26-Nov-16 11:22am

Probably they are in the build directory. Basically pdb files contain debugging informations and they are not essential in case you are not going to debug your application. Creation of pdf files can be disabled in the project configuration and usually it is for the default Release configuration.
Why do they bother you?

Check more here:
http://msdn.microsoft.com/en-us/library/yd4f8bd1(v=vs.71).aspx[^]

Cheers
 
Share this answer
 
Hi,

Go to Properties->Build. Click on the "Advanced..." button. Change "Debug Info" into "none".

Hope this helps.
 
Share this answer
 
#include<iostream>
using namespace std;
void main()
{
int a,b;
for(a=1;a<=10;a++)
{
for(b=1;b<=10;b++)
{
cout<<"Abdul Wahab"<<endl;< iostream="">
 
Share this answer
 
http://stackoverflow.com/a/14659676/492

"In Debug -> Option and Settings -> Debugging -> SymbolsSymbols -> Cache symbols in this directory: try set path something like C:\Users\...\AppData\Local\Temp\SymbolCache"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900