How to change ipch path in Visual Studio 2012

I saw that VS2012 creates some files in the solution folder (.sdf, .suo, .ipch, etc.). Can I change the folder in which these files are created?

VS2010 methods do not work in VS2012, see screenshot: enter image description here

+2
source share
1 answer

Go to ToolsSettingsText Editorthe C / C ++Extras

In " Fallback Location ", set " Always use fallback location " to Trueand " Remember if backup location >" is used before True. In " Fallback Location " you can leave it blank, and VS will use your folder %TEMP%or specify a different location of your choice.

(Note that the .suo files will still sit next to your solutions)

+7
source

All Articles