From 978767f50a8ca8b8a1edf8fe3edc24b6039c836a Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 15 Nov 2024 15:45:49 -0800 Subject: [PATCH 1/3] address UUF 295160 --- docs/build/vscpp-step-1-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/vscpp-step-1-create.md b/docs/build/vscpp-step-1-create.md index 73bc28ca5c6..3879889f945 100644 --- a/docs/build/vscpp-step-1-create.md +++ b/docs/build/vscpp-step-1-create.md @@ -11,7 +11,7 @@ The usual starting point for a C++ programmer is a "Hello, world!" application t ## Prerequisites -- Have Visual Studio with the Desktop development with C++ workload installed and running on your computer. If it's not installed yet, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). +- The **Desktop development with C++** workload must be installed so that the **Console App (C++)** project type will be available. If it's not, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). ## Create your app project @@ -19,7 +19,7 @@ Visual Studio uses *projects* to organize the code for an app, and *solutions* t ::: moniker range=">=msvc-160" -1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. +1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. The **Desktop development with C++** workload must be installed for this template to show up. See [Install C++ support in Visual Studio](vscpp-step-0-installation.md) if you haven't already installed this support. :::image type="complex" source="media/vs2019-choose-console-app.png" alt-text="Screenshot of the create a new project dialog."::: The create a new project dialog with the Console App template selected. That template says: Run code in a windows terminal. Prints hello world by default. Has the tags c++, Windows, and Console. From 88a8b48ba427d18e2f5899773ff805d4473eca01 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 15 Nov 2024 15:49:12 -0800 Subject: [PATCH 2/3] wording --- docs/build/vscpp-step-1-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/vscpp-step-1-create.md b/docs/build/vscpp-step-1-create.md index 3879889f945..d99abe79fad 100644 --- a/docs/build/vscpp-step-1-create.md +++ b/docs/build/vscpp-step-1-create.md @@ -11,7 +11,7 @@ The usual starting point for a C++ programmer is a "Hello, world!" application t ## Prerequisites -- The **Desktop development with C++** workload must be installed so that the **Console App (C++)** project type will be available. If it's not, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). +- The **Desktop development with C++** workload must be installed to make the **Console App (C++)** project type available. If it's not installed, see [Install C++ support in Visual Studio](vscpp-step-0-installation.md). ## Create your app project @@ -19,7 +19,7 @@ Visual Studio uses *projects* to organize the code for an app, and *solutions* t ::: moniker range=">=msvc-160" -1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. The **Desktop development with C++** workload must be installed for this template to show up. See [Install C++ support in Visual Studio](vscpp-step-0-installation.md) if you haven't already installed this support. +1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. The **Desktop development with C++** workload must be installed for this template to show up. See [Install C++ support in Visual Studio](vscpp-step-0-installation.md) if you haven't already installed it. :::image type="complex" source="media/vs2019-choose-console-app.png" alt-text="Screenshot of the create a new project dialog."::: The create a new project dialog with the Console App template selected. That template says: Run code in a windows terminal. Prints hello world by default. Has the tags c++, Windows, and Console. From 152aeed1c8451548e62f8ee4a9f496e486b3f096 Mon Sep 17 00:00:00 2001 From: TylerMSFT Date: Fri, 15 Nov 2024 15:56:26 -0800 Subject: [PATCH 3/3] put notice in better place --- docs/build/vscpp-step-1-create.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/build/vscpp-step-1-create.md b/docs/build/vscpp-step-1-create.md index d99abe79fad..f3a3546d390 100644 --- a/docs/build/vscpp-step-1-create.md +++ b/docs/build/vscpp-step-1-create.md @@ -19,12 +19,14 @@ Visual Studio uses *projects* to organize the code for an app, and *solutions* t ::: moniker range=">=msvc-160" -1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. The **Desktop development with C++** workload must be installed for this template to show up. See [Install C++ support in Visual Studio](vscpp-step-0-installation.md) if you haven't already installed it. +1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog. Select the **Console App** template that has **C++**, **Windows**, and **Console** tags, and then choose **Next**. :::image type="complex" source="media/vs2019-choose-console-app.png" alt-text="Screenshot of the create a new project dialog."::: The create a new project dialog with the Console App template selected. That template says: Run code in a windows terminal. Prints hello world by default. Has the tags c++, Windows, and Console. :::image-end::: + The **Desktop development with C++** workload must be installed for the C++ Console App template to show up. See [Install C++ support in Visual Studio](vscpp-step-0-installation.md) if you haven't already installed it. + 1. In the **Configure your new project** dialog, enter *HelloWorld* in the **Project name** edit box. Choose **Create** to create the project. :::image type="complex" source="media/vs2019-configure-new-project-hello-world.png" alt-text="Screenshot of Configure your new project dialog.":::