Skip to content

Commit 7885337

Browse files
authored
Merge pull request #1688 from drewnoakes/patch-2
Minor clarification
2 parents b242431 + 9252db4 commit 7885337

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

docs/extensibility/extensibility-hello-world.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload:
1212
---
1313
# Create your first extension: Hello World
1414

15-
This Hello World example walks you through creating your first extension for Visual Studio. This tutorial will show you how to add a new command to Visual Studio.
15+
This Hello World example walks you through creating your first extension for Visual Studio. This tutorial shows you how to add a new command to Visual Studio.
1616

1717
In the process, you will learn how to:
1818

@@ -29,11 +29,12 @@ For this example, you'll use Visual C# to add a custom menu button named "Say He
2929

3030
Before you start, make sure you have installed the **Visual Studio extension development** workload which includes the VSIX template you'll need and sample code.
3131

32-
Note: You can use any version of Visual Studio (Community, Professional, or Enterprise) to create a Visual Studio Extensibility project.
32+
> [!NOTE]
33+
> You can use any edition of Visual Studio (Community, Professional, or Enterprise) to create a Visual Studio extensibility project.
3334
3435
## Create an extensibility project
3536

36-
Step 1. From the **File** menu, click **New Project**. At the bottom of the screen, you can enter the name of your project.
37+
Step 1. From the **File** menu, click **New Project**. At the bottom of the screen, enter the name of your project.
3738

3839
Step 2. From the **Templates** menu, click **Visual C#**, click **Extensibility**, and then click **VSIX Project**.
3940

@@ -47,15 +48,15 @@ If you need to leave this tutorial and come back to it, you can find your new He
4748

4849
Step 1. If you select the manifest, you can see what options are changeable, for instance, metadata, description, and version.
4950

50-
Step 2. Right-click the project (not the solution). On the context menu, click **Add**, and then click **User Control**.
51+
Step 2. Right-click the project (not the solution). On the context menu, click **Add**, and then click **New Item**.
5152

52-
Step 3. Go back to the **Extensibility** section, and then click **Custom Command**.
53+
Step 3. Select the **Extensibility** section, and then click **Custom Command**.
5354

5455
Step 4. In the **Name** field at the bottom, give it a name, for instance *Command.cs*.
5556

5657
![custom command](media/hello-world-custom-command.png)
5758

58-
Your new command will be listed in the **Solution Explorer** under the **Resources** branch. This is also where you'll find other files related to your command, such as the PNG and ICO files if you wish to modify the image.
59+
Your new command is listed in **Solution Explorer** under the **Resources** branch. This is also where you'll find other files related to your command, such as the PNG and ICO files if you wish to modify the image.
5960

6061
## Modify the source code
6162

@@ -110,7 +111,7 @@ Make sure to save your changes to each file.
110111

111112
You can now run the source code in the Visual Studio Experimental Instance.
112113

113-
Step 1. Click **Start** in the Toolbar. This will build your project and start the debugger, launching a new instance of Visual Studio called the **Experimental Instance**.
114+
Step 1. Click **Start** in the Toolbar. This builds your project and starts the debugger, launching a new instance of Visual Studio called the **Experimental Instance**.
114115

115116
You will see the words **Experimental Instance** in the Visual Studio title bar.
116117

@@ -128,4 +129,4 @@ Now that you know the basics of working with Visual Studio Extensibility, here's
128129

129130
* [Start to develop Visual Studio extensions](starting-to-develop-visual-studio-extensions.md) - Samples, tutorials. and publishing your extension.
130131
* [What's new in the Visual Studio 2017 SDK](what-s-new-in-the-visual-studio-2017-sdk.md) -New extensibility features in Visual Studio 2017
131-
* [Inside the Visual Studio SDK](internals/inside-the-visual-studio-sdk.md) - Learn the details of Visual Studio Extensibility
132+
* [Inside the Visual Studio SDK](internals/inside-the-visual-studio-sdk.md) - Learn the details of Visual Studio Extensibility

0 commit comments

Comments
 (0)