A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
Hello @Max Yaffe ,
As RLWA32 mentioned, the AI's solution with Directory.Build.props won't work if your individual .vcxproj files already have the SDK or Toolset hardcoded.
To fix this, you need to right-click on each individual C++ project in the Solution Explorer and open their Property Pages. If the Windows SDK Version or Platform Toolset values appear in bold, they are currently overriding the global settings. You must clear those values (or select <inherit from parent or project defaults>).
Once the bold formatting is removed from all projects individually, they will correctly inherit the unified values from your root Directory.Build.props file.
If you found my response helpful or informative, I would greatly appreciate it if you could follow this guide provide feedback. Thank you.