VC ++ Global Directories for Visual Studio 2010 or Later

How can I change global Visual C ++ directories in Visual Studio 2010 or later?

+4
source share
2 answers

The Toolset.props files for Visual Studio 2013 can be found in:

 %ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\Win32\PlatformToolsets\v120 %ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\Win32\PlatformToolsets\v120_xp %ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\x64\PlatformToolsets\v120 %ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\x64\PlatformToolsets\v120_xp 

Files for other versions of Visual Studio should be located in similar places.

+1
source

According to this Microsoft blog , Open View | Project Manager and edit the item in the tree named Microsoft.Cpp.Win32.user (or Microsoft.Cpp.x64.user for 64-bit projects).

+6
source

Source: https://habr.com/ru/post/1489998/


All Articles