Skip to content

correctly refer to "using directives" #4183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

9. WindowsBase

3. Add the following `using` statement.
3. Add the following `using` directive.

```csharp
using Microsoft.VisualStudio.Text;
Expand Down Expand Up @@ -129,7 +129,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

1. Create a class in the CommentAdornmentTest project, and name it `CommentBlock`.

2. Add the following `using` statements.
2. Add the following `using` directives.

```csharp
using Microsoft.VisualStudio.Text;
Expand Down Expand Up @@ -253,7 +253,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

1. Add a class file to the CommentAdornmentTest project and name it `Connector`.

2. Add the following `using` statements.
2. Add the following `using` directives.

```csharp
using System.ComponentModel.Composition;
Expand Down Expand Up @@ -317,7 +317,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

1. Add a new class file to the CommentAdornmentTest project and name it `CommentAdornmentProvider`.

2. Add the following `using` statements.
2. Add the following `using` directives.

```csharp
using System;
Expand Down Expand Up @@ -481,7 +481,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

1. Add a class file to the CommentAdornmentTest project and name it `CommentAdornmentManager`.

2. Add the following `using` statements.
2. Add the following `using` directives.

```csharp
using System;
Expand Down Expand Up @@ -606,7 +606,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This

- Microsoft.VisualStudio.Text.UI.Wpf

2. Open the *AddAdornment.cs* file and add the following `using` statements.
2. Open the *AddAdornment.cs* file and add the following `using` directives.

```csharp
using Microsoft.VisualStudio.TextManager.Interop;
Expand Down