-
Visual Studio 2019 Project File Compilation with Visual Studio 2015Computer/Programming 2021. 3. 11. 10:54
Setting the latest version of the Windows SDK in Visual Studio 2019 will set the value of "WindowsTargetPlatformVersion" to 10.0 in the project file. When we want compile with Visual Studio 2015, the value 10.0 will make many errors because Visual Studio 2015 requires exact SDK version. The exact version value will solve this problem.
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>