From c054fc3acc654a89ff229eb38fee3894ab890ad0 Mon Sep 17 00:00:00 2001 From: "Emil D. Kohn" Date: Sat, 5 Apr 2025 15:42:38 +0300 Subject: [PATCH] Update walkthrough-using-msbuild-to-create-a-visual-cpp-project.md Use ToolsVersion=17.0 for Visual Studio 2022 --- ...hrough-using-msbuild-to-create-a-visual-cpp-project.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/walkthrough-using-msbuild-to-create-a-visual-cpp-project.md b/docs/build/walkthrough-using-msbuild-to-create-a-visual-cpp-project.md index 7fa76df095..2e21028185 100644 --- a/docs/build/walkthrough-using-msbuild-to-create-a-visual-cpp-project.md +++ b/docs/build/walkthrough-using-msbuild-to-create-a-visual-cpp-project.md @@ -83,10 +83,10 @@ An MSBuild project file is an XML file that contains a project root element (`

` element shown here. (Use `ToolsVersion="14.0"` if you're using Visual Studio 2015, `ToolsVersion="15.0"` if you're using Visual Studio 2017, or `ToolsVersion="16.0"` if you're using Visual Studio 2019.) +1. Use a text editor to create a project file that is named *`myproject.vcxproj`*, and then add the root `` element shown here. (Use `ToolsVersion="14.0"` if you're using Visual Studio 2015, `ToolsVersion="15.0"` if you're using Visual Studio 2017, `ToolsVersion="16.0"` if you're using Visual Studio 2019, or `ToolsVersion="17.0"` if you're using Visual Studio 2022.) ```xml - + ``` @@ -155,10 +155,10 @@ An MSBuild project file is an XML file that contains a project root element (`

+ Debug