Chernikov
Chernikov

Reputation: 857

Disable Debugging symbols in VS2008

How to disable debugging symbols in VS2008.

I'd unchecked "load symbols ..." in Tools -> Options -> Debugging -> Symbols but directories as ".pdb" and file pingme.txt still appear in my project folders.

Upvotes: 2

Views: 3139

Answers (2)

Richard
Richard

Reputation: 108985

Which symbols are appearing? You will still get them for your code unless you disable them in project settings.

Also check environment variable _NT_SYMBOL_PATH is not set.

Upvotes: 1

Timotei
Timotei

Reputation: 1909

Well not from there.

Go in Project Properties > Compile Tab > Advanced Compile Options (button)

After that you will have a combo box(Generate Debug Info) and select None

Upvotes: 0

Related Questions