Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set _NO_DEBUG_HEAP

I am trying to set the _NO_DEBUG_HEAP variable in VS 2010. How do I set _NO_DEBUG_HEAP environment variable in VS 2010 ? Need some quick help!

like image 520
Zahid Sattar Avatar asked Jun 26 '11 19:06

Zahid Sattar


1 Answers

The previous answers were setting the var globally for all applications.

To make this setting exist only during a debug session...

in VS, you can set debugging env vars by:

  1. right-click on your startup project
  2. select :Properties"
  3. Go to the "Debugging" property page
  4. Add your var to the "Environment" property in the form varName=val. Multiple vars can be defined with one var=val pair per line.
like image 132
D. Garlisch Avatar answered Sep 18 '22 07:09

D. Garlisch