Skip to content

Commit 88a8b48

Browse files
committed
wording
1 parent 978767f commit 88a8b48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/build/vscpp-step-1-create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ The usual starting point for a C++ programmer is a "Hello, world!" application t
1111

1212
## Prerequisites
1313

14-
- 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).
14+
- 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).
1515

1616
## Create your app project
1717

1818
Visual Studio uses *projects* to organize the code for an app, and *solutions* to organize your projects. A project contains all the options, configurations, and rules used to build your apps. It manages the relationship between all the project's files and any external files. To create your app, first, create a new project and solution.
1919

2020
::: moniker range=">=msvc-160"
2121

22-
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.
22+
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.
2323

2424
:::image type="complex" source="media/vs2019-choose-console-app.png" alt-text="Screenshot of the create a new project dialog.":::
2525
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.

0 commit comments

Comments
 (0)