From: Mikko Rasa Date: Sun, 18 Dec 2022 14:26:46 +0000 (+0200) Subject: Don't output a PlatformToolset tag in vcxproj files X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=bb95e9f8b161733624e7abe744a5aeee8a77158f Don't output a PlatformToolset tag in vcxproj files Visual Studio doesn't seem to actually need it. It's fairly meaningless anyway since builder will choose the toolset itself. --- diff --git a/source/vcxprojectgenerator.cpp b/source/vcxprojectgenerator.cpp index 52451f5..c5df4d5 100644 --- a/source/vcxprojectgenerator.cpp +++ b/source/vcxprojectgenerator.cpp @@ -81,7 +81,6 @@ void VcxProjectGenerator::Worker::main() IO::print(out, "\t\t%s -B\n", base_cmd); if(exe) IO::print(out, "\t\t%s\n", exe->get_path()); - IO::print(out, "\t\t\tv142\n"); IO::print(out, "\t\n"); }