Where are Visual Studios Debugging settings saved? -


when change debugging settings in project properties (in case environment value) not saved project or solution file.

vs property pages

where saved?

those settings saved in projectname.vcxproj.user file, located in same directory project file. looks example:

<?xml version="1.0" encoding="utf-8"?> <project toolsversion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">   <propertygroup>     <showallfiles>true</showallfiles>   </propertygroup>   <propertygroup condition="'$(configuration)|$(platform)'=='debug|win32'">     <localdebuggercommandarguments>     </localdebuggercommandarguments>     <debuggerflavor>windowslocaldebugger</debuggerflavor>     <localdebuggerenvironment>path=$(cxpathd);%path%</localdebuggerenvironment>   </propertygroup>   </propertygroup> </project> 

Comments

Popular posts from this blog

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

python Tkinter Capturing keyboard events save as one single string -

sql server - Why does Linq-to-SQL add unnecessary COUNT()? -