]> git.tdb.fi Git - builder.git/commitdiff
Don't output a PlatformToolset tag in vcxproj files
authorMikko Rasa <tdb@tdb.fi>
Sun, 18 Dec 2022 14:26:46 +0000 (16:26 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 18 Dec 2022 14:26:46 +0000 (16:26 +0200)
Visual Studio doesn't seem to actually need it.  It's fairly meaningless
anyway since builder will choose the toolset itself.

source/vcxprojectgenerator.cpp

index 52451f59d939c51b62796294341ee63223ab6b64..c5df4d551c746728b882253981ac5716b5776905 100644 (file)
@@ -81,7 +81,6 @@ void VcxProjectGenerator::Worker::main()
                        IO::print(out, "\t\t<NMakeReBuildCommandLine>%s -B</NMakeReBuildCommandLine>\n", base_cmd);
                        if(exe)
                                IO::print(out, "\t\t<NMakeOutput>%s</NMakeOutput>\n", exe->get_path());
-                       IO::print(out, "\t\t\t<PlatformToolset>v142</PlatformToolset>\n");
                        IO::print(out, "\t</PropertyGroup>\n");
                }