Skip to content

Commit 9152b8e

Browse files
authored
Merge pull request #2393 from gewarren/menu-punctuation
Minor touch-ups to my areas
2 parents 6dcbec7 + 35cfef6 commit 9152b8e

File tree

39 files changed

+120
-119
lines changed

39 files changed

+120
-119
lines changed

docs/code-quality/in-source-suppression-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In C++/CLI, use the macros CA\_SUPPRESS\_MESSAGE or CA\_GLOBAL\_SUPPRESS_MESSAGE
2929
> You should not use in-source suppressions on release builds, to prevent shipping the in-source suppression metadata accidentally. Additionally, because of the processing cost of in-source suppression, the performance of your application can be degraded.
3030
3131
> [!NOTE]
32-
> If you migrate a project to Visual Studio 2017, you might suddenly be faced with an overwhelming number of code analysis warnings. If you aren't ready to fix the warnings and want to temporarily turn code analysis off, open the project's property pages (**Project** > ***project* Properties...**) and go to the **Code Analysis** tab. Deselect **Enable Code Analysis on Build**, and then rebuild your project. Alternatively, you can select a different, smaller rule set to run against the code. Remember to turn code analysis back on when you are ready to fix the warnings.
32+
> If you migrate a project to Visual Studio 2017, you might suddenly be faced with an overwhelming number of code analysis warnings. If you aren't ready to fix the warnings and want to temporarily turn code analysis off, open the project's property pages (**Project** > **\<project> Properties**) and go to the **Code Analysis** tab. Deselect **Enable Code Analysis on Build**, and then rebuild your project. Alternatively, you can select a different, smaller rule set to run against the code. Remember to turn code analysis back on when you are ready to fix the warnings.
3333
3434
## SuppressMessage attribute
3535

docs/code-quality/walkthrough-analyzing-managed-code-for-code-defects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This walkthrough steps you through the process of using code analysis to analyze
2323

2424
### To create a class library
2525

26-
1. On the **File** menu, choose **New** > **Project...**.
26+
1. On the **File** menu, choose **New** > **Project**.
2727

2828
1. In the **New Project** dialog box, expand **Installed** > **Visual C#**, and then choose **Windows Desktop**.
2929

docs/data-tools/create-a-simple-data-application-with-wpf-and-entity-framework-6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This example uses SQL Server Express LocalDB and the Northwind sample database.
2626

2727
2. Install the Northwind sample database by following these steps:
2828

29-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (**SQL Server Object Explorer** is installed as part of the **Data storage and processing** workload in the **Visual Studio Installer**.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
29+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (**SQL Server Object Explorer** is installed as part of the **Data storage and processing** workload in the **Visual Studio Installer**.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
3030

3131
A query editor window opens.
3232

docs/data-tools/handle-a-concurrency-exception.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
6565

6666
#### To create a new Windows Forms application project
6767

68-
1. In Visual Studio, on the **File** menu, select **New**, **Project**.
68+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
6969

7070
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
7171

docs/data-tools/save-data-in-a-transaction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
3030

3131
2. Install the Northwind sample database by following these steps:
3232

33-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
33+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
3434

3535
A query editor window opens.
3636

@@ -45,7 +45,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
4545

4646
#### To create the new Windows project
4747

48-
1. In Visual Studio, on the **File** menu, select **New**, **Project...**.
48+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
4949

5050
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
5151

docs/data-tools/save-data-to-a-database-multiple-tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
4848

4949
2. Install the Northwind sample database by following these steps:
5050

51-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
51+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
5252

5353
A query editor window opens.
5454

@@ -63,7 +63,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
6363

6464
#### To create the new Windows forms application project
6565

66-
1. In Visual Studio, on the **File** menu, select **New**, **Project...**.
66+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
6767

6868
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
6969

docs/data-tools/save-data-with-the-tableadapter-dbdirect-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
4141

4242
2. Install the Northwind sample database by following these steps:
4343

44-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
44+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
4545

4646
A query editor window opens.
4747

@@ -56,7 +56,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
5656

5757
#### To create the new Windows project
5858

59-
1. In Visual Studio, on the **File** menu, select **New**, **Project...**.
59+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
6060

6161
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
6262

docs/data-tools/walkthrough-creating-a-dataset-with-the-dataset-designer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
2828

2929
2. Install the Northwind sample database by following these steps:
3030

31-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
31+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
3232

3333
A query editor window opens.
3434

docs/data-tools/walkthrough-creating-a-wcf-data-service-with-wpf-and-entity-framework.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
4343

4444
2. Install the Northwind sample database by following these steps:
4545

46-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
46+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
4747

4848
A query editor window opens.
4949

@@ -148,7 +148,7 @@ In the next steps, you will create a Windows Forms client application to consume
148148

149149
#### To create the client application
150150

151-
1. On the menu bar, choose File, **Add**, **New Project**.
151+
1. On the menu bar, choose File, **Add** > **New Project**.
152152

153153
2. In the **New Project** dialog box, expand the **Visual Basic** or **Visual C#** node and choose the **Windows** node, and then choose **Windows Forms Application**.
154154

docs/data-tools/walkthrough-creating-an-n-tier-data-application.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
5353

5454
2. Install the Northwind sample database by following these steps:
5555

56-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
56+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
5757

5858
A query editor window opens.
5959

@@ -71,7 +71,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
7171
7272
#### To create the n-tier solution and DataEntityTier class library
7373

74-
1. In Visual Studio, on the **File** menu, select **New**, **Project...**.
74+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
7575

7676
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
7777

@@ -88,7 +88,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
8888

8989
#### To create a separate class library for the TableAdapters
9090

91-
1. Right-click on the solution in Solution Explorer and choose **Add**, **New Project...**.
91+
1. Right-click on the solution in Solution Explorer and choose **Add** > **New Project**.
9292

9393
2. In the **New Project** dialog box, in the middle pane, select **Class Library**.
9494

@@ -158,7 +158,7 @@ This walkthrough demonstrates how to access the data access tier by using a WCF
158158

159159
#### To create a new WCF Service application
160160

161-
1. Right-click on the solution in Solution Explorer and choose **Add**, **New Project...**.
161+
1. Right-click on the solution in Solution Explorer and choose **Add** > **New Project**.
162162

163163
2. In the **New Project** dialog box, in the left-hand pane, select **WCF**. In the middle pane, select **WCF Service Library**.
164164

@@ -282,7 +282,7 @@ This walkthrough demonstrates how to access the data access tier by using a WCF
282282

283283
#### To create the presentation tier project
284284

285-
1. Right-click on the solution in Solution Explorer and choose **Add**, **New Project...**.
285+
1. Right-click on the solution in Solution Explorer and choose **Add** > **New Project**.
286286

287287
2. In the **New Project** dialog box, in the left-hand pane, select **Windows Desktop**. In the middle pane, select **Windows Forms App**.
288288

docs/data-tools/walkthrough-creating-linq-to-sql-classes-by-using-single-table-inheritance-o-r-designer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The [LINQ to SQL Tools in Visual Studio](../data-tools/linq-to-sql-tools-in-visu
8787

8888
#### To create the new Windows Forms Application
8989

90-
1. In Visual Studio, on the **File** menu, select **New**, **Project...**.
90+
1. In Visual Studio, on the **File** menu, select **New** > **Project**.
9191

9292
2. Expand either **Visual C#** or **Visual Basic** in the left-hand pane, then select **Windows Desktop**.
9393

docs/data-tools/walkthrough-customizing-the-insert-update-and-delete-behavior-of-entity-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This walkthrough uses SQL Server Express LocalDB and the Northwind sample databa
4949

5050
2. Install the Northwind sample database by following these steps:
5151

52-
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query...**.
52+
1. In Visual Studio, open the **SQL Server Object Explorer** window. (SQL Server Object Explorer is installed as part of the **Data storage and processing** workload in the Visual Studio Installer.) Expand the **SQL Server** node. Right-click on your LocalDB instance and select **New Query**.
5353

5454
A query editor window opens.
5555

docs/designers/image-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This section describes how to add an image to your Visual Studio project and con
4040

4141
### To add an image to your project
4242

43-
1. In **Solution Explorer**, open the shortcut menu for the project that you want to add the image to, and then choose **Add**, **New Item**.
43+
1. In **Solution Explorer**, open the shortcut menu for the project that you want to add the image to, and then choose **Add** > **New Item**.
4444

4545
2. In the **Add New Item** dialog box, under **Installed**, select **Graphics**, and then select an appropriate file format for the image. For information about how to choose a file format based on your requirements, see the following section.
4646

docs/designers/shader-designer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This section describes how to add a DGSL shader to your [!INCLUDE[vsprvs](../cod
3737

3838
### To add a DGSL shader to your project
3939

40-
1. In **Solution Explorer**, open the shortcut menu for the project that you want to add the shader to, and then choose **Add**, **New Item**.
40+
1. In **Solution Explorer**, open the shortcut menu for the project that you want to add the shader to, and then choose **Add** > **New Item**.
4141

4242
2. In the **Add New Item** dialog box, under **Installed**, select **Graphics**, and then select **Visual Shader Graph (.dgsl)**.
4343

docs/ide/code-snippets.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ ms.workload:
2222
---
2323
# Code snippets
2424

25-
Code snippets are small blocks of reusable code that can be inserted in a code file using a context menu command or a combination of hotkeys. They typically contain commonly-used code blocks such as `try-finally` or `if-else` blocks, but they can be used to insert entire classes or methods.
25+
Code snippets are small blocks of reusable code that can be inserted in a code file using a context menu command or a combination of hotkeys. They typically contain commonly used code blocks such as `try-finally` or `if-else` blocks, but they can be used to insert entire classes or methods.
2626

2727
Code snippets are available for a multitude of languages, including C#, C++, Visual Basic, XML, and T-SQL, to name a few. To view all the available installed snippets for a language, open the **Code Snippets Manager** from the **Tools** menu in Visual Studio, and choose the language from the drop-down menu at the top.
2828

2929
![Code Snippets Manager dialog box](media/code-snippets-manager.png)
3030

3131
Code snippets can be accessed in the following general ways:
3232

33-
- On the menu bar, choose **Edit** > **IntelliSense** > **Insert Snippet...**
33+
- On the menu bar, choose **Edit** > **IntelliSense** > **Insert Snippet**
3434

35-
- From the right-click or context menu in the code editor, choose **Snippet** > **Insert Snippet...**
35+
- From the right-click or context menu in the code editor, choose **Snippet** > **Insert Snippet**
3636

3737
- From the keyboard, press **Ctrl**+**K**+**X**
3838

@@ -68,7 +68,7 @@ if (true)
6868

6969
Snippets can contain replacement parameters, which are placeholders that you must replace to fit the precise code you are writing. In the previous example `true` is a replacement parameter, which you would replace with the appropriate condition. The replacement you make is repeated for every instance of the same replacement parameter in the snippet.
7070

71-
For example, in Visual Basic there is a code snippet that inserts a property. To insert the snippet, choose **Snippet...** > **Insert Snippet** from the right-click or context menu in a Visual Basic code file. Then, choose **Code Patterns** > **Properties, Procedures, Events** > **Define a Property**.
71+
For example, in Visual Basic there's a code snippet that inserts a property. To insert the snippet, choose **Snippet** > **Insert Snippet** from the right-click or context menu in a Visual Basic code file. Then, choose **Code Patterns** > **Properties, Procedures, Events** > **Define a Property**.
7272

7373
![Code snippet menu for Define a Property](media/code-snippets-vb-property.png)
7474

docs/ide/create-a-visual-basic-winform-in-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ First, you'll create a Visual Basic application project. The project type comes
2828

2929
1. Open Visual Studio 2017.
3030

31-
2. From the top menu bar, choose **File** > **New** > **Project...**.
31+
2. From the top menu bar, choose **File** > **New** > **Project**.
3232

3333
3. In the **New Project** dialog box in the left pane, expand **Visual Basic**, and then choose **Windows Desktop**. In the middle pane, choose **Windows Forms App (.NET Framework)**. Then name the file `HelloWorld`.
3434

35-
If you don't see the **Windows Forms App (.NET Framework)** project template, cancel out of the **New Project** dialog box and from the top menu bar, choose **Tools** > **Get Tools and Features...**. The Visual Studio Installer launches. Choose the **.NET desktop development** workload, then choose **Modify**.
35+
If you don't see the **Windows Forms App (.NET Framework)** project template, cancel out of the **New Project** dialog box and from the top menu bar, choose **Tools** > **Get Tools and Features**. The Visual Studio Installer launches. Choose the **.NET desktop development** workload, then choose **Modify**.
3636

3737
![.NET Core workload in the Visual Studio Installer](../ide/media/install-dot-net-desktop-env.png)
3838

docs/ide/create-portable-custom-editor-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you remove an EditorConfig file from your project or codebase, you must close
5252

5353
1. Open a project or solution in Visual Studio. Select either the project or solution node, depending on whether your *.editorconfig* settings should apply to all projects in the solution or just one. You can also select a folder in your project or solution to add the *.editorconfig* file to.
5454

55-
1. From the menu bar, choose **Project** > **Add New Item...**, or press **Ctrl**+**Shift**+**A**.
55+
1. From the menu bar, choose **Project** > **Add New Item**, or press **Ctrl**+**Shift**+**A**.
5656

5757
The **Add New Item** dialog box opens.
5858

docs/ide/creating-solutions-and-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ That being said, solutions and projects are not required to develop apps in Visu
3737
3838
## To create a project from a project template
3939

40-
1. There are multiple ways to create a new project in Visual Studio. On the **Start Page**, enter the name of a project template in the **Search project templates** box, or choose the **Create new project** link to open the **New Project** dialog box. You can also choose **File** > **New** > **Project...** on the menu bar, or choose the **New Project** button on the toolbar.
40+
1. There are multiple ways to create a new project in Visual Studio. On the **Start Page**, enter the name of a project template in the **Search project templates** box, or choose the **Create new project** link to open the **New Project** dialog box. You can also choose **File** > **New** > **Project** on the menu bar, or choose the **New Project** button on the toolbar.
4141

4242
![Start page](./media/vside-newproject1.png)
4343

@@ -94,7 +94,7 @@ You can also create empty solutions that have no projects. This might be prefera
9494

9595
### To create an empty solution
9696

97-
1. On the menu, choose **File** > **New** > **Project...**.
97+
1. On the menu, choose **File** > **New** > **Project**.
9898

9999
1. In the left (**Templates**) pane, choose **Other Project Types** > **Visual Studio Solutions** in the expanded list.
100100

0 commit comments

Comments
 (0)