0

The "MSBuild" folder is generated when Visual Studio 2017 is launched, as well as in previous versions of Visual Studio. The "Microsoft.Cpp.x64.user.props" and "Microsoft.Cpp.Win32.user.props" files in the MSBuild folder are located at " C:\Users\username\AppData\Local\Microsoft\MSBuild\v4.0" and we use these cpp files to update some values. Now, this MsBuild folder and the files are not getting generated for Visual Studio 2019 and 2022. Whether these files are generated in anyother location? How to get those cpp files in Vs2022?

1 Answers1

0

According to this link, the feature is deprecated. It is recommended not to use that approach, but to keep all build settings within the source-controlled workspace, so that builds are reliable across environments.

Jimmy
  • 25,492
  • 5
  • 84
  • 93