Skip to content

Commit e67c74e

Browse files
authored
Apply suggestions from code review
1 parent a4814a1 commit e67c74e

13 files changed

+0
-21
lines changed

docs/ide/how-to-set-multiple-startup-projects.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ The following example shows a solution WebFrontEndA with three projects, a front
4141

4242
In this example and any other Docker Compose scenario, if you choose `docker-compose` as the single startup project, but then you'll use a different way of specifying which projects or services to start. You'll use a Docker Compose launch profile to determine what services to start, and whether or not to attach the debugger, and there's a different dialog in Visual Studio for configuring it. See [Start a subset of services](../containers/launch-profiles.md). The **Solution Property Pages** dialog is only used for non-containerized solutions or when you are *not* using Docker Compose to manage startup.
4343

44-
4544
## See also
4645

4746
- [Compile and build](../ide/compiling-and-building-in-visual-studio.md)

docs/ide/managing-project-and-solution-properties.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ You access project properties by right-clicking the project node in **Solution E
3131

3232
:::image type="content" source="media/vs-2022/properties-node-solution-explorer.png" alt-text="Screenshot of Solution Explorer with a Properties node showing.":::
3333

34-
3534
> [!NOTE]
3635
> This topic applies to Visual Studio on Windows. For Visual Studio for Mac, see [Managing solution and project properties (Visual Studio for Mac)](/visualstudio/mac/managing-solutions-and-project-properties).
3736
@@ -74,7 +73,6 @@ C++ and JavaScript projects have a different user interface for managing project
7473

7574
:::image type="content" source="media/vs-2022/properties-page-cpp-console.png" alt-text="Screenshot of the C++ project properties page.":::
7675

77-
7876
For information about C++ project properties, see [Work with project properties (C++)](/cpp/build/working-with-project-properties). For more information about JavaScript properties, see [Property pages, JavaScript](../ide/reference/property-pages-javascript.md).
7977

8078
## Solution properties

docs/ide/reference/options-text-editor-basic-visual-basic.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ When selected, inserts parameter name hints for literals, casted literals, and o
113113

114114
![Inline Parameter Name Hints for Visual Basic](media/inline-parameter-name-hints-visualbasic.png)
115115

116-
117116
**Pretty Listing (reformatting) of code**
118117
The text editor reformats your code as appropriate. When this option is selected, the code editor will:
119118

docs/ide/reference/options-text-editor-csharp-advanced.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ Use the **Advanced** options page to modify the settings for editor formatting,
108108
- Suggest usings for types in .NET Framework assemblies
109109

110110

111-
112111
- Suggest usings for types in NuGet packages
113112

114113
When these options are selected, a [Quick Action](../quick-actions.md) is available to install a NuGet package and add a `using` directive for unreferenced types.

docs/ide/solutions-and-projects-in-visual-studio.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ A "solution folder" is a virtual folder that's only in **Solution Explorer**, wh
7979
After you create a new project, you can use **[Solution Explorer](use-solution-explorer.md)** to view and manage the project and solution and their associated items. The following illustration shows **Solution Explorer** with a C# solution that contains two projects:
8080

8181

82-
::: moniker range=">=vs-2019"
83-
8482
![Screenshot of Solution Explorer with two projects in Visual Studio.](../ide/media/solution-explorer.png)
8583

8684
The [toolbar](use-solution-explorer.md#solution-explorer-toolbar) across the top of **Solution Explorer** has buttons to switch from a solution view to a folder view, filter pending changes, show all files, collapse all nodes, view [properties](managing-project-and-solution-properties.md) pages, preview code in the [code editor](writing-code-in-the-code-and-text-editor.md), and more.

docs/ide/walkthrough-building-an-application.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ In this article, you'll become more familiar with several options that you can c
2020

2121
The sample code used in this tutorial is found at [WPF samples](https://github.com/microsoft/wpf-samples). To clone the repo, use GitHub's green **Clone** button, and choose **Clone in Visual Studio**. You can choose the location on the local hard drive to create a copy of the contents of the repo. The repo contains many solutions. If Visual Studio opens one of the solutions, close the solution and then choose **Open project or solution**, and browse to the location where you cloned the repo, and under that, look for *GettingStarted/WalkthroughFirstWPFApp/csharp/ExpenseItIntro.sln* to work in C#, or *GettingStarted/WalkthroughFirstWPFApp/vb/ExpenseItIntro2.sln* to work in Visual Basic.
2222

23-
2423
## Create a custom build configuration
2524

2625
When you create a solution, Debug and Release build configurations and their default platform targets are defined for the solution automatically. You can then customize these configurations or create your own. Build configurations specify the build type. Build platforms specify the operating system that an application targets for that configuration. For more information, see [Understand build configurations](../ide/understanding-build-configurations.md), [Understand build platforms](../ide/understanding-build-platforms.md), and [How to: Set debug and release configurations](../debugger/how-to-set-debug-and-release-configurations.md).

docs/install/create-a-network-installation-of-visual-studio.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ Here are a few examples of how to create a custom partial layout.
163163
vs_enterprise.exe --layout C:\VSLayout --add Microsoft.VisualStudio.Workload.Azure --add Microsoft.VisualStudio.Workload.ManagedDesktop --includeRecommended --includeOptional
164164
```
165165

166-
167166
### Ensure your layout is using the latest installer
168167

169168
We recommend that you always use the latest Visual Studio installer in your layout and distribute it to your clients. That way you will have access to the new features and functionality we make available in subsequent versions of the product. For example, if you distribute the Visual Studio 2022 Installer in your Visual Studio 2019 layouts, then your Visual Studio 2019 clients based off of that layout will have the ability to change source location for updates. The scenario where this functionality would be useful is if you want to install from one layout but have updates come from another layout. Further details, including how to turn _off_ using the latest installer, are [described below](#configure-the-layout-to-always-include-and-provide-the-latest-installer)

docs/javascript/create-application-with-vuejs.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ The following new features support Vue.js application development in Visual Stud
4040
If a required version is not already installed, install [Visual Studio 2019](https://visualstudio.microsoft.com/downloads).
4141

4242

43-
4443
If you need to install the workload but already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **Node.js development** workload, then choose **Modify**.
4544

4645
* To create the ASP.NET Core project, you must have the ASP.NET and web development and .NET Core cross-platform development workloads installed.
@@ -73,7 +72,6 @@ For this example, you use an empty ASP.NET Core Application (C#). However, you c
7372
Choose either the recommended target framework or .NET 6, and then choose **Create**.
7473

7574

76-
7775
If you don't see the **ASP.NET Core Web Application** project template, you must install the **ASP.NET and web development** workload and the .**NET Core** development workload first. To install the workload(s), click the **Open Visual Studio Installer** link in the left pane of the **New Project** dialog box (select **File** > **New** > **Project**). The Visual Studio Installer launches. Select the required workloads.
7876

7977
#### Configure the project startup file

docs/javascript/npm-package-management.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ Right-click a package node to take one of the following actions:
115115
* **Uninstall npm Package(s)** Uninstalls the package and removes it from *package.json* (Runs `npm uninstall --save`.)
116116

117117

118-
119118
>[!NOTE]
120119
> For help resolving issues with npm packages, see [Troubleshooting](#troubleshooting-npm-packages).
121120

docs/javascript/publish-nodejs-app-azure.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ In this tutorial, you learn how to:
4040
If you haven't already installed Visual Studio 2019, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/) page to install it for free.
4141

4242

43-
4443
If you need to install the workload but already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **Node.js development** workload, then choose **Modify**.
4544

4645
![Node.js workload in VS Installer](./media/tutorial-nodejs-workload.png)
@@ -57,7 +56,6 @@ In this tutorial, you learn how to:
5756

5857
Press **Esc** to close the start window. Type **Ctrl + Q** to open the search box, type **Node.js**, then choose **Create new Basic Azure Node.js Express 4 application** (TypeScript). In the dialog box that appears, choose **Create**.
5958

60-
6159
If you don't see the **Basic Azure Node.js Express 4 application** project template, you must add the **Node.js development** workload. For detailed instructions, see the [Prerequisites](#prerequisites).
6260

6361
Visual Studio creates the project and opens it in Solution Explorer (right pane).

docs/javascript/tutorial-nodejs-with-react-and-jsx.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ To start your browser with debugging enabled:
492492
`chrome.exe --remote-debugging-port=9222`
493493

494494

495-
496495
The browser starts with debugging enabled. The app isn't running yet, so the browser page is empty.
497496

498497
### Attach the debugger to client-side script
@@ -542,7 +541,6 @@ The browser starts with debugging enabled. The app isn't running yet, so the bro
542541

543542
If you created a debugging-enabled browser configuration with a friendly name, choose that browser as your debug target.
544543

545-
546544
The app opens in a new browser tab.
547545

548546
1. Select **Debug** > **Attach to Process**, or press **Ctrl**+**Alt**+**P**.
@@ -555,7 +553,6 @@ The browser starts with debugging enabled. The app isn't running yet, so the bro
555553
Make sure the correct debugger for your target browser, **JavaScript (Chrome)** or **JavaScript (Microsoft Edge - Chromium)**, appears in the **Attach to** field. Type *chrome* or *edge* in the filter box to filter the results.
556554

557555

558-
559556
1. Select the browser process with the correct host port, **localhost** in this example. The port number **1337** or **localhost** might also appear in the **Title** field to help you select the correct process.
560557

561558
1. Select **Attach**.
@@ -565,7 +562,6 @@ The browser starts with debugging enabled. The app isn't running yet, so the bro
565562
![Screenshot showing the Attach to process dialog box.](../javascript/media/tutorial-nodejs-react-attach-to-process-edge.png)
566563

567564

568-
569565
> [!TIP]
570566
> If the debugger doesn't attach and you see the message **Unable to attach to the process. An operation is not legal in the current state.**, use Task Manager to close all instances of the target browser before starting the browser in debugging mode. Browser extensions may be running and preventing full debug mode.
571567

docs/javascript/unit-testing-javascript-with-visual-studio.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ You can run tests in Visual Studio or from the command line.
9898
You can run the tests by clicking the **Run All** link in Test Explorer. Or, you can run tests by selecting one or more tests or groups, right-clicking, and selecting **Run** from the shortcut menu. Tests run in the background, and Test Explorer automatically updates and shows the results. Furthermore, you can also debug selected tests by right-clicking and selecting **Debug**.
9999

100100

101-
102101
For TypeScript, unit tests are run against the generated JavaScript code.
103102

104103
> [!NOTE]
@@ -256,7 +255,6 @@ Test execution time: 1.5731 Seconds
256255
You can run the tests by clicking the **Run All** link in Test Explorer. Or, you can run tests by selecting one or more tests or groups, right-clicking, and selecting **Run** from the shortcut menu. Tests run in the background, and Test Explorer automatically updates and shows the results. Furthermore, you can also debug selected tests by right-clicking and selecting **Debug**.
257256

258257

259-
260258
For TypeScript, unit tests are run against the generated JavaScript code.
261259

262260
![Test Explorer results](../javascript/media/unit-tests-aspnet-core-run.png)

docs/msbuild/errors/msb3327.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ To resolve this error, try re-importing the .pfx file again in the certificate s
3434

3535
See [How to: Sign application and deployment manifests](../../ide/how-to-sign-application-and-deployment-manifests.md) or for newer .NET projects in Visual Studio 2019 or later, see [Deploy a .NET Windows Desktop application using ClickOnce](../../deployment/quickstart-deploy-using-clickonce-folder.md).
3636

37-
3837
When running in a non-interactive environment, such as a script in a pipeline, use the command-line tool [certutil](/windows-server/administration/windows-commands/certutil).
3938

4039
```cmd

0 commit comments

Comments
 (0)