Skip to content

Commit 54e2325

Browse files
author
Colin Robertson
committed
Update VS2019 top level topics
1 parent b5f21b9 commit 54e2325

34 files changed

+1088
-553
lines changed

.openpublishing.redirection.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7666,7 +7666,7 @@
76667666
},
76677667
{
76687668
"source_path": "docs/top/cpp-conformance-improvements-2017.md",
7669-
"redirect_url": "/cpp/cpp-conformance-improvements-2017",
7669+
"redirect_url": "/cpp/overview/cpp-conformance-improvements",
76707670
"redirect_document_id": false
76717671
},
76727672
{
@@ -7676,7 +7676,7 @@
76767676
},
76777677
{
76787678
"source_path": "docs/top/how-to-report-a-problem-with-the-visual-cpp-toolset.md",
7679-
"redirect_url": "/cpp/how-to-report-a-problem-with-the-visual-cpp-toolset",
7679+
"redirect_url": "/cpp/overview/how-to-report-a-problem-with-the-visual-cpp-toolset",
76807680
"redirect_document_id": false
76817681
},
76827682
{
@@ -7701,27 +7701,27 @@
77017701
},
77027702
{
77037703
"source_path": "docs/top/supported-platforms-visual-cpp.md",
7704-
"redirect_url": "/cpp/supported-platforms-visual-cpp",
7704+
"redirect_url": "/cpp/overview/supported-platforms-visual-cpp",
77057705
"redirect_document_id": false
77067706
},
77077707
{
77087708
"source_path": "docs/top/visual-cpp-help-and-community.md",
7709-
"redirect_url": "/cpp/visual-cpp-help-and-community",
7709+
"redirect_url": "/cpp/overview/visual-cpp-help-and-community",
77107710
"redirect_document_id": false
77117711
},
77127712
{
77137713
"source_path": "docs/top/visual-cpp-in-visual-studio.md",
7714-
"redirect_url": "/cpp/visual-cpp-in-visual-studio",
7714+
"redirect_url": "/cpp/overview/visual-cpp-in-visual-studio",
77157715
"redirect_document_id": false
77167716
},
77177717
{
77187718
"source_path": "docs/top/visual-cpp-samples.md",
7719-
"redirect_url": "/cpp/visual-cpp-samples",
7719+
"redirect_url": "/cpp/overview/visual-cpp-samples",
77207720
"redirect_document_id": false
77217721
},
77227722
{
77237723
"source_path": "docs/top/what-s-new-for-visual-cpp-in-visual-studio.md",
7724-
"redirect_url": "/cpp/what-s-new-for-visual-cpp-in-visual-studio",
7724+
"redirect_url": "/cpp/overview/what-s-new-for-visual-cpp-in-visual-studio",
77257725
"redirect_document_id": false
77267726
},
77277727
{
41.8 KB
Loading
Loading
69.7 KB
Loading

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

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create a C++ console app project
33
description: "Create a Hello World console app in Visual C++"
44
ms.custom: "mvc"
5-
ms.date: 12/12/2017
5+
ms.date: 04/02/2019
66
ms.topic: "tutorial"
77
ms.devlang: "cpp"
88
ms.assetid: 45138d70-719d-42dc-90d7-1d0ca31a2f54
@@ -21,17 +21,23 @@ Visual Studio uses *projects* to organize the code for an app, and *solutions* t
2121

2222
::: moniker range=">=vs-2019"
2323

24-
1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **Create a new Project** dialog.
24+
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, and then choose **Next**.
2525

26-
![Open the New Project dialog](media/vscpp-file-new-project.gif "Open the New Project dialog")
26+
![Create a new project](media/vs2019-choose-console-app.png "Open the Create a new project dialog")
2727

28-
1. In the **New Project** dialog, select **Installed**, **Visual C++** if it isn't selected already, and then choose the **Empty Project** template. In the **Name** field, enter *HelloWorld*. Choose **OK** to create the project.
28+
1. In the **Configure your new project** dialog, enter *HelloWorld* in the **Project name** edit box. Choose **Create** to create the project.
2929

30-
![Name and create the new project](media/vscpp-concierge-project-name-callouts.png "Name and create the new project")
30+
![Name and create the new project](media/vs2019-configure-new-project-hello-world.png "Name and create the new project")
31+
32+
Visual Studio creates a new project, ready for you to add and edit your source code. By default, the Console App template fills in your source code with a "Hello World" app:
33+
34+
![Hello World project in the IDE](media/vs2019-hello-world-code.png "Hello World project in the IDE")
35+
36+
When the code looks like this in the editor, you're ready to go on to the next step and build your app.
3137

3238
::: moniker-end
3339

34-
::: moniker range="<vs-2019"
40+
::: moniker range="<=vs-2017"
3541

3642
1. In Visual Studio, open the **File** menu and choose **New > Project** to open the **New Project** dialog.
3743

@@ -41,8 +47,6 @@ Visual Studio uses *projects* to organize the code for an app, and *solutions* t
4147

4248
![Name and create the new project](media/vscpp-concierge-project-name-callouts.png "Name and create the new project")
4349

44-
::: moniker-end
45-
4650
Visual Studio creates a new, empty project, ready for you to specialize for the kind of app you want to create and to add your source code files. You'll do that next.
4751

4852
[I ran into a problem.](#create-your-app-project-issues)
@@ -95,11 +99,15 @@ When the code looks like this in the editor, you're ready to go on to the next s
9599
96100
[I ran into a problem.](#add-a-source-code-file-issues)
97101
102+
::: moniker-end
103+
98104
## Next Steps
99105
100106
> [!div class="nextstepaction"]
101107
> [Build and run a C++ project](vscpp-step-2-build.md)
102108
109+
::: moniker range="<=vs-2017"
110+
103111
## Troubleshooting guide
104112
105113
Come here for solutions to common issues when you create your first C++ project.
@@ -136,4 +144,6 @@ If red squiggles appear under anything in the source code editor, check that you
136144
137145
[Go back](#add-code-to-the-source-file).
138146
147+
::: moniker-end
148+
139149
<iframe src="" height="0" width="0" frameborder="0" name="frameTarget" />

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: "mblome"
99
<div class="container">
1010
<ul class="cardsY panelContent featuredContent">
1111
<li>
12-
<a href="http://github.com/%3Cspan%20class="x x-first x-last">/visualstudio/install/install-visual-studio">
12+
<a href="http://github.com/%3Cspan%20class="x x-first x-last">./build/vscpp-step-0-install.md">
1313
<div class="cardSize">
1414
<div class="cardPadding">
1515
<div class="card">
@@ -27,7 +27,7 @@ ms.author: "mblome"
2727
</a>
2828
</li>
2929
<li>
30-
<a href="http://github.com/%3Cspan%20class="x x-first x-last">/visualstudio/ide/getting-started-with-cpp-in-visual-studio">
30+
<a href="http://github.com/%3Cspan%20class="x x-first x-last">./get-started/tutorial-console-cpp.md">
3131
<div class="cardSize">
3232
<div class="cardPadding">
3333
<div class="card">
@@ -45,7 +45,7 @@ ms.author: "mblome"
4545
</a>
4646
</li>
4747
<li>
48-
<a href="http://github.com/%3Cspan%20class="x x-first x-last">/cpp/what-s-new-for-overview/visual-cpp-in-visual-studio.md">
48+
<a href="http://github.com/%3Cspan%20class="x x-first x-last">./overview/what-s-new-for-visual-cpp-in-visual-studio.md">
4949
<div class="cardSize">
5050
<div class="cardPadding">
5151
<div class="card">
@@ -55,7 +55,7 @@ ms.author: "mblome"
5555
</div>
5656
</div>
5757
<div class="cardText">
58-
<h3>What’s new for C++ in Visual Studio 2017</h3>
58+
<h3>What’s new for C++ in Visual Studio</h3>
5959
</div>
6060
</div>
6161
</div>

0 commit comments

Comments
 (0)