Skip to content

Commit 33924ff

Browse files
authored
Merge pull request #8542 from MicrosoftDocs/cxwtool-11891
Merge master into release-dev17-preview4
2 parents 80d9e44 + 934c3be commit 33924ff

18 files changed

+147
-84
lines changed

docs/debugger/how-to-edit-a-register-value.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ ms.topic: how-to
77
f1_keywords:
88
- vs.debug.register.edit
99
dev_langs:
10-
- CSharp
11-
- VB
12-
- FSharp
1310
- C++
14-
- JScript
1511
helpviewer_keywords:
1612
- Registers window, editing register values
1713
- register values
@@ -23,7 +19,7 @@ ms.technology: vs-ide-debug
2319
ms.workload:
2420
- multiple
2521
---
26-
# How to: Edit a Register Value (C#, C++, Visual Basic, F#)
22+
# How to: Edit a Register Value (C++)
2723

2824
The Registers window is available only if address-level debugging is enabled in the **Options** dialog box, **Debugging** node.
2925

@@ -40,4 +36,4 @@ The Registers window is available only if address-level debugging is enabled in
4036
> Editing floating-point values can result in minor inaccuracies because of decimal-to-binary conversion of fractional components. Even a seemingly innocuous edit can result in changes to some of the least significant bits in a floating-point register.
4137
4238
## See also
43-
- [How to: Use the Registers Window](../debugger/how-to-use-the-registers-window.md)
39+
- [How to: Use the Registers Window](../debugger/how-to-use-the-registers-window.md)

docs/get-started/csharp/tutorial-console.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Tutorial: Create a simple C# console app "
33
description: "Learn how to create a C# console app in Visual Studio, step-by-step."
44
ms.custom: "vs-acquisition, get-started"
5-
ms.date: 02/10/2021
5+
ms.date: 08/12/2021
66
ms.technology: vs-ide-general
77
ms.prod: visual-studio-windows
88
ms.topic: tutorial
@@ -98,7 +98,7 @@ If you don't see the **Console App (.NET Core)** project template, you can get i
9898

9999
![View the 'Create a new project' window](../../get-started/media/vs-2019/create-new-project-dark-theme.png)
100100

101-
1. In the **Create a new project** window, choose **C#** from the Language list. Next, choose **Windows** from the Platform list and **Console** from the project types list.
101+
1. In the **Create a new project** window, choose **C#** from the Language list. Next, choose **Windows** from the Platform list and **Console** from the project types list.
102102

103103
After you apply the language, platform, and project type filters, choose the **Console Application** template, and then choose **Next**.
104104

@@ -107,8 +107,8 @@ If you don't see the **Console App (.NET Core)** project template, you can get i
107107
> [!NOTE]
108108
> If you do not see the **Console Application** template, you can install it from the **Create a new project** window. In the **Not finding what you're looking for?** message, choose the **Install more tools and features** link.
109109
>
110-
> ![The 'Install more tools and features' link from the 'Not finding what you're looking for' message in the 'Create new project' window](../../get-started/media/vs-2019/not-finding-what-looking-for.png)
111-
>
110+
> ![The 'Install more tools and features' link from the 'Not finding what you're looking for' message in the 'Create new project' window](../../get-started/media/vs-2019/not-finding-what-looking-for.png)
111+
>
112112
> Then, in the Visual Studio Installer, choose the **.NET Core cross-platform development** workload.
113113
>
114114
> ![.NET Core cross-platform development workload in the Visual Studio Installer](./media/dot-net-core-xplat-dev-workload.png)
@@ -118,7 +118,7 @@ If you don't see the **Console App (.NET Core)** project template, you can get i
118118
1. In the **Configure your new project** window, type or enter *Calculator* in the **Project name** box. Then, choose **Next**.
119119

120120
:::image type="content" source="./media/vs-2019/csharp-name-your-calculator-project.png" alt-text="in the 'Configure your new project' window, name your project 'Calculator'":::
121-
121+
122122
1. In the **Additional information** window, **.NET Core 3.1** should already be selected for your target framework. If not, select **.NET Core 3.1**. Then, choose **Create**.
123123

124124
:::image type="content" source="./media/vs-2019/csharp-target-framework.png" alt-text="in the 'In the 'Additional information' window, make sure .NET Core 3.1 is selected":::
@@ -355,7 +355,7 @@ Let's get started.
355355

356356
namespace Calculator
357357
{
358-
358+
359359
}
360360
```
361361

@@ -493,7 +493,7 @@ Let's get started.
493493

494494
1. In Visual Studio, press **Ctrl**+**S** to save your app.
495495

496-
1. Close Visual Studio.
496+
[!INCLUDE[../includes/git-source-control.md](../includes/git-source-control.md)]
497497

498498
## Review: code complete
499499

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
ms.date: 08/11/2021
3+
ms.technology: vs-ide-general
4+
ms.custom: vs-get-started
5+
ms.author: tglee
6+
author: TerryGLee
7+
manager: jmartens
8+
ms.topic: include
9+
---
10+
::: moniker range=">=vs-2019"
11+
12+
## Add Git source control
13+
14+
Now that you've created your app, you might want to add it to a Git repository. We've got you covered; Visual Studio makes that process easy with Git tools you can use directly from the IDE.
15+
16+
> [!TIP]
17+
> Git is the most widely used modern version control system, so whether you're a professional developer or if you're learning how to code, Git can be very useful to you. If you are new to Git, the [https://git-scm.com/](https://git-scm.com/) website is a good place to start. There, you’ll find cheat sheets, a popular online book, and Git Basics videos.
18+
19+
To associate your code with Git, you start by creating a new Git repository where your code is located. Here's how.
20+
21+
1. In the status bar at the bottom-right corner of Visual Studio, select the **Add to Source Control** button, and then select **Git**.
22+
23+
:::image type="content" source="../media/vs-2022/git-add-source-control.png" alt-text="Screenshot of the Git source control buttons below the Solution Explorer pane, with the Add to Source Control button highlighted.":::
24+
25+
1. In the **Create a Git repository** dialog box, sign in to GitHub.
26+
27+
:::image type="content" source="../media/vs-2022/git-create-repo.png" alt-text="Screenshot of the Create a Git Repository dialog window where you can sign in to GitHub.":::
28+
29+
The repository name is auto-populated based on your folder location. By default, your new repository is private, which means you're the only one who can access it.
30+
31+
> [!TIP]
32+
> Whether your repository is public or private, it's best to have a remote backup of your code stored securely on GitHub even if you aren't working with a team. This also makes your code available to you no matter what computer you're using.
33+
34+
1. Select **Create and Push**.
35+
36+
After you've created your repository, you'll see status details in the status bar.
37+
38+
:::image type="content" source="../media/vs-2022/git-new-private-repo-status-details.png" alt-text="Screenshot of the repo status bar that's below the Solution Explorer pane in Visual Studio.":::
39+
40+
The first icon with the arrows shows how many outgoing/incoming commits are in your current branch. You can use this icon to pull any incoming commits or push any outgoing commits. You can also choose to view these commits first, too. To do so, click the icon, and then select **View Outgoing/Incoming**.
41+
42+
The second icon with the pencil shows the number of uncommitted changes to your code. You can click this icon to view those changes in the **Git Changes** window.
43+
44+
To learn more about how to use Git with your app, see the [Visual Studio version control documentation](../../version-control/index.yml) page.
45+
46+
::: moniker-end
Loading
Loading
Loading

docs/get-started/visual-basic/tutorial-console.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Tutorial: Get started with Visual Basic"
33
description: "Learn how to create Visual Basic console apps in Visual Studio, step-by-step."
44
ms.custom: "vs-acquisition, get-started"
5-
ms.date: 02/10/2021
5+
ms.date: 08/13/2021
66
ms.technology: vs-ide-general
77
ms.prod: visual-studio-windows
88
ms.topic: tutorial
@@ -93,8 +93,8 @@ If you don't see the **Console App (.NET Core)** project template, you can get i
9393
> [!NOTE]
9494
> If you do not see the **Console Application** template, you can install it from the **Create a new project** window. In the **Not finding what you're looking for?** message, choose the **Install more tools and features** link.
9595
>
96-
> ![The 'Install more tools and features' link from the 'Not finding what you're looking for' message in the 'Create new project' window](../../get-started/media/vs-2019/not-finding-what-looking-for.png)
97-
>
96+
> ![The 'Install more tools and features' link from the 'Not finding what you're looking for' message in the 'Create new project' window](../../get-started/media/vs-2019/not-finding-what-looking-for.png)
97+
>
9898
> Then, in the Visual Studio Installer, choose the **.NET Core cross-platform development** workload.
9999
>
100100
> ![.NET Core cross-platform development workload in the Visual Studio Installer](../../get-started/media/dot-net-core-xplat-dev-workload.png)
@@ -206,11 +206,11 @@ Let's create an app that prompts you for your name and then displays it along wi
206206

207207
![Console window showing the CalculateThis app, which includes prompts on which actions to take.](media/vb-console-calculate-this.png)
208208

209-
::: moniker-end
209+
::: moniker-end
210210

211211
::: moniker range=">=vs-2019"
212212

213-
1. On the start window, choose **Create a new project**.
213+
1. On the start window, choose **Create a new project**.
214214

215215
1. In the **Create a new project** window, choose **Visual Basic** from the Language list. Next, choose **Windows** from the Platform list and **Console** from the project types list.
216216

@@ -247,6 +247,8 @@ Let's create an app that prompts you for your name and then displays it along wi
247247

248248
::: moniker-end
249249

250+
[!INCLUDE[../includes/git-source-control.md](../includes/git-source-control.md)]
251+
250252
## Quick answers FAQ
251253

252254
Here's a quick FAQ to highlight some key concepts.

docs/ide/default-keyboard-shortcuts-in-visual-studio.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Default keyboard shortcuts
33
description: Learn about the default keyboard shortcuts in Visual Studio that allow you to access a variety of commands and windows.
44
ms.custom: SEO-VS-2020
5-
ms.date: 06/21/2021
5+
ms.date: 08/11/2021
66
ms.topic: reference
77
helpviewer_keywords:
88
- shortcut keys [Visual Studio], keyboard binding schemes
@@ -24,10 +24,16 @@ You can access a variety of [commands](reference/visual-studio-commands.md) and
2424
For a list of common keyboard shortcuts and other productivity information, see:
2525

2626
- [Keyboard tips](../ide/productivity-shortcuts.md)
27-
- [Productivity tips](../ide/productivity-features.md).
27+
- [Productivity tips](../ide/productivity-features.md)
2828

2929
For more information about accessibility in Visual Studio, see [Accessibility tips and tricks](../ide/reference/accessibility-tips-and-tricks.md) and [How to: Use the keyboard exclusively](../ide/reference/how-to-use-the-keyboard-exclusively.md).
3030

31+
## Printable shortcut cheatsheet
32+
33+
Click to get our [printable keyboard shortcut cheatsheet for Visual Studio](https://visualstudio.microsoft.com/keyboard-shortcuts.pdf).
34+
35+
[:::image type="content" source="media/default-keyboard-shortcuts-in-visual-studio/visual-studio-keyboard-shortcut-cheatsheet.png" alt-text="Printable cheatsheet for keyboard shortcuts.":::](https://visualstudio.microsoft.com/keyboard-shortcuts.pdf)
36+
3137
<a name="popular"></a>
3238
## Popular keyboard shortcuts for Visual Studio
3339

@@ -1474,6 +1480,3 @@ The shortcuts specific to this context are:
14741480
|Show graph view|**Ctrl+3**| XsdDesigner.ShowGraphView |
14751481
|Show start view|**Ctrl+1**| XsdDesigner.ShowStartView |
14761482

1477-
## See also
1478-
1479-
- [Visual Studio commands](reference/visual-studio-commands.md)

docs/ide/suggest-a-feature.md

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,6 @@ You can also start a feature suggestion directly from Visual Studio by choosing
2222

2323
Choosing **Provide a Suggestion** takes you to [Developer Community](https://aka.ms/feedback/suggest?space=8), where you can enter your suggestion.
2424

25-
## User Voice
26-
27-
Until now, Visual Studio users proposed new feature ideas on User Voice. By adding the *Suggest a feature* functionality to Developer Community, all of your feedback for the Visual Studio product team is now in one place.
28-
29-
The User Voice site has been made read-only. You can look back as you need to for context, but all new feature suggestions should be submitted on Developer Community.
30-
31-
We migrated an initial set of ideas from the User Voice forum to Developer Community. Migration was done based on the community impact of the feedback and our product roadmap priorities. If you were expecting to see a suggestion here that we may have missed, feel free to add it to Developer Community.
32-
33-
## Votes
34-
35-
The voting system in Developer Community is different to User Voice. To maintain the integrity of Developer Community vote counts and to avoid skewing of votes, we show the User Voice vote counts prominently as a tag next to each feature suggestion. As you continue to vote on suggestions in the enhanced Developer Community, your new vote counts will show separately from the User Voice vote counts.
36-
3725
## Suggestion status
3826

3927
After you submit a feature suggestion, states indicate where your feature submission is in its lifecycle. As we take your feedback into consideration and move it along the workflow, we tag it with the corresponding state. The various states associated with feature suggestions are listed here, along with a description of their meaning and color indicators.
@@ -103,32 +91,6 @@ Found the information we were looking for? You may request to reactivate the tic
10391

10492
- - -
10593

106-
## FAQ
107-
108-
### Why can't I see my User Voice idea in Developer Community?
109-
110-
New feature suggestions from the old User Voice forum have been migrated to Developer Community based on the impact to the broader community and our product road map priorities. If you think we've missed migrating your suggestion, add it as a new suggestion to Developer Community.
111-
112-
### Why have the votes not been carried over from User Voice?
113-
114-
The voting system in User Voice operates differently from the voting system in Developer Community. In the new system, we want to maintain the integrity of the vote counts and avoid skewing the data. We decided to show the User Voice vote counts prominently as a tag (instead of votes) for each suggestion. When users vote on suggest a feature submissions using Developer Community, the new votes will show separately from the User Voice votes.
115-
116-
### Where can I see comments associated with the suggestions imported from User Voice?
117-
118-
Follow the link we've included to go back to the User Voice comments on a suggestion that has been migrated to Developer Community. This link will be available during the transition period for easy reference if you need more context.
119-
120-
### Why can I see three vote counts for a suggestion?
121-
122-
When a suggestion has been imported from User Voice, you'll see three separate vote counts. The two vote counts shown as tags are the vote counts that the idea received originally on User Voice. The third vote count displayed to the left of the suggestion lets you see how many votes the suggestion is getting from Developer Community.
123-
124-
The voting system in User Voice operates differently from the votes in Developer Community. To maintain integrity of Developer Community vote counts and avoid skewing the data, we decided to show the User Voice vote counts prominently as a tag (instead of votes) for each suggestion.
125-
126-
### How long can I expect actions to take?
127-
128-
We're fully committed to listening to your feature suggestions and taking actions to provide valuable experiences to our customers. Actions on suggestions are prioritized based on impact to the broader community. Even if we can't respond personally to every suggestion, we'll make sure that your feedback gets to the right team and is evaluated carefully.
129-
130-
The response time depends on the status your feedback is in. Please review the explanation of statuses in this document to understand the response times.
131-
13294
## See also
13395

13496
- [Introducing 'Suggest a Feature' in Developer Community (Visual Studio blog)](https://devblogs.microsoft.com/visualstudio/introducing-suggest-a-feature-in-developer-community/?utm_source=vs_developer_news&utm_medium=referral)

docs/ide/whats-new-visual-studio-2017.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ ms.author: tglee
1414
manager: jmartens
1515
ms.technology: vs-ide-general
1616
ms.prod: visual-studio-windows
17-
ms.technology: vs-ide-general
1817
ms.topic: conceptual
1918
ms.workload:
2019
- "multiple"
@@ -386,4 +385,4 @@ Sometimes, a message isn't enough to convey the full impact of a problem that yo
386385
* [What's new in C#](/dotnet/csharp/whats-new)
387386
* [What's new for Team Foundation Server](/azure/devops/server/whats-new)
388387
* [What's new in Visual Studio for Mac](https://visualstudio.microsoft.com/vs/visual-studio-mac/)
389-
* [What's new in Visual Studio 2019](whats-new-visual-studio-2019.md)
388+
* [What's new in Visual Studio 2019](whats-new-visual-studio-2019.md)

docs/ide/whats-new-visual-studio-docs.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ ms.author: meghaanand
1212
manager: jmartens
1313
ms.technology: vs-ide-general
1414
ms.prod: visual-studio-windows
15-
ms.technology: vs-ide-general
1615
ms.topic: conceptual
1716
ms.workload:
1817
- "multiple"
@@ -599,4 +598,4 @@ The following sections provide the previous three months of what's new in the Vi
599598
- [Configure unit tests by using a *.runsettings* file](../test/configure-unit-tests-by-using-a-dot-runsettings-file.md)
600599
- Developer Command Prompt and Developer PowerShell
601600
- Fixed typos
602-
- [VSTest.Console.exe command-line options](../test/vstest-console-options.md) - Developer Command Prompt and Developer PowerShell
601+
- [VSTest.Console.exe command-line options](../test/vstest-console-options.md) - Developer Command Prompt and Developer PowerShell

docs/install/visual-studio-build-numbers-and-release-dates.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A list of released versions and build numbers for Visual Studio, so
55
author: TerryGLee
66
ms.author: tglee
77
manager: jmartens
8-
ms.date: 08/11/2021
8+
ms.date: 08/16/2021
99
ms.topic: reference
1010
ms.workload:
1111
- multiple
@@ -23,6 +23,7 @@ The following table lists the build numbers and release dates for Visual Studio
2323

2424
| **Version**| **Channel** | **Release date** | **Build version** |
2525
| ---------------------- | ----------- | ---------------- | ----------------- |
26+
| 17.0.0 | Preview 3.1 | August 16, 2021 | 17.0.31612.314 |
2627
| 17.0.0 | Preview 3 | August 10, 2021 | 17.0.31606.05 |
2728
| 17.0.0 | Preview 2.1 | July 22, 2021 | 17.0.31521.260 |
2829
| 17.0.0 | Preview 2 | July 14, 2021 | 17.0.31512.422 |
@@ -42,6 +43,7 @@ The following table lists the build numbers and release dates for Visual Studio
4243

4344
| **Version**| **Channel** | **Release date** | **Build version** |
4445
| ---------------------- | ----------- | ---------------- | ----------------- |
46+
| 16.11.1 | Release | August 16, 2021 | 16.11.31613.86 |
4547
| 16.11.0 | Release | August 10, 2021 | 16.11.31605.320 |
4648
| 16.9.10 | Release | August 10, 2021 | 16.9.31529.145|
4749
| 16.7.18 | Release | August 10, 2021 | 16.7.31528.273|

0 commit comments

Comments
 (0)