diff --git a/aspnet/aspnet/overview/developing-apps-with-windows-azure/building-real-world-cloud-apps-with-windows-azure/the-fix-it-sample-application.md b/aspnet/aspnet/overview/developing-apps-with-windows-azure/building-real-world-cloud-apps-with-windows-azure/the-fix-it-sample-application.md
index 9da6595863..e67166e76a 100644
--- a/aspnet/aspnet/overview/developing-apps-with-windows-azure/building-real-world-cloud-apps-with-windows-azure/the-fix-it-sample-application.md
+++ b/aspnet/aspnet/overview/developing-apps-with-windows-azure/building-real-world-cloud-apps-with-windows-azure/the-fix-it-sample-application.md
@@ -215,7 +215,7 @@ There are two ways to run the Fix It app:
4. In File Explorer, right-click the .zip file and click Properties, then in the Properties window click Unblock.
5. Unzip the file.
6. Double-click the .sln file to launch Visual Studio.
-7. From the Tools menu, click Library Package Manager, then Package Manager Console.
+7. From the **Tools** menu, click **NuGet Package Manager**, then **Package Manager Console**.
8. In the Package Manager Console (PMC), click Restore.
9. Exit Visual Studio.
10. Start the [Azure storage emulator](/azure/storage/common/storage-use-emulator).
diff --git a/aspnet/aspnet/overview/developing-apps-with-windows-azure/maintainable-azure-websites-managing-change-and-scale.md b/aspnet/aspnet/overview/developing-apps-with-windows-azure/maintainable-azure-websites-managing-change-and-scale.md
index 346dc9cf66..bff517c08b 100644
--- a/aspnet/aspnet/overview/developing-apps-with-windows-azure/maintainable-azure-websites-managing-change-and-scale.md
+++ b/aspnet/aspnet/overview/developing-apps-with-windows-azure/maintainable-azure-websites-managing-change-and-scale.md
@@ -118,7 +118,7 @@ In this task, you will go through the steps of enabling **Entity Framework Code
1. Open Visual Studio and open the **GeekQuiz.sln** solution file from **Source\Ex1-UsingEntityFrameworkMigrations\Begin**.
2. Build the solution in order to download and install the **NuGet** package dependencies. To do this, right-click the solution and click **Build Solution** or press **Ctrl + Shift + B**.
-3. From the **Tools** menu in Visual Studio, select **Library Package Manager**, and then click **Package Manager Console**.
+3. From the **Tools** menu in Visual Studio, select **NuGet Package Manager**, and then click **Package Manager Console**.
4. In the **Package Manager Console**, enter the following command and then press **Enter**. An initial migration based on the existing model will be created.
[!code-powershell[Main](maintainable-azure-websites-managing-change-and-scale/samples/sample1.ps1)]
diff --git a/aspnet/aspnet/overview/owin-and-katana/enabling-windows-authentication-in-katana.md b/aspnet/aspnet/overview/owin-and-katana/enabling-windows-authentication-in-katana.md
index 098a8e469c..56d2997ed6 100644
--- a/aspnet/aspnet/overview/owin-and-katana/enabling-windows-authentication-in-katana.md
+++ b/aspnet/aspnet/overview/owin-and-katana/enabling-windows-authentication-in-katana.md
@@ -30,7 +30,6 @@ Katana currently provides two servers, both of which support Windows Integrated
> [!NOTE]
> Katana does not currently provide OWIN middleware for Windows Authentication, because this functionality is already available in the servers.
-
## Windows Authentication in IIS
Using Microsoft.Owin.Host.SystemWeb, you can simply enable Windows Authentication in IIS.
@@ -39,7 +38,7 @@ Let's start by creating a new ASP.NET application, using the "ASP.NET Empty Web
![](enabling-windows-authentication-in-katana/_static/image1.png)
-Next, add NuGet packages. From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Next, add NuGet packages. From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-console[Main](enabling-windows-authentication-in-katana/samples/sample1.cmd)]
@@ -69,7 +68,7 @@ Later, when you deploy the application to a server, follow [these steps](https:/
If you are using Microsoft.Owin.Host.HttpListener to self-host Katana, you can enable Windows Authentication directly on the **HttpListener** instance.
-First, create a new console application. Next, add NuGet packages. From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+First, create a new console application. Next, add NuGet packages. From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-console[Main](enabling-windows-authentication-in-katana/samples/sample4.cmd)]
diff --git a/aspnet/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana.md b/aspnet/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana.md
index fd0c7044da..0debfe76cd 100644
--- a/aspnet/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana.md
+++ b/aspnet/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana.md
@@ -33,7 +33,7 @@ In the **New ASP.NET Project** dialog, select the **Empty** template.
### Add NuGet Packages
-Next, add the required NuGet packages. From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
+Next, add the required NuGet packages. From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
`install-package Microsoft.Owin.Host.SystemWeb –Pre`
diff --git a/aspnet/aspnet/overview/owin-and-katana/host-owin-in-an-azure-worker-role.md b/aspnet/aspnet/overview/owin-and-katana/host-owin-in-an-azure-worker-role.md
index e14dda9eca..0a402ac338 100644
--- a/aspnet/aspnet/overview/owin-and-katana/host-owin-in-an-azure-worker-role.md
+++ b/aspnet/aspnet/overview/owin-and-katana/host-owin-in-an-azure-worker-role.md
@@ -50,7 +50,7 @@ In general, an Azure application can contain multiple roles, although this tutor
## Add the OWIN Self-Host Packages
-From the **Tools** menu, click **Library Package Manager**, then click **Package Manager Console**.
+From the **Tools** menu, click **NuGet Package Manager**, then click **Package Manager Console**.
In the Package Manager Console window, enter the following command:
diff --git a/aspnet/aspnet/overview/owin-and-katana/owin-startup-class-detection.md b/aspnet/aspnet/overview/owin-and-katana/owin-startup-class-detection.md
index 2f3ad0e22d..5f1c3b4453 100644
--- a/aspnet/aspnet/overview/owin-and-katana/owin-startup-class-detection.md
+++ b/aspnet/aspnet/overview/owin-and-katana/owin-startup-class-detection.md
@@ -51,7 +51,7 @@ by [Praburaj Thiagarajan](https://github.com/Praburaj), [Rick Anderson]((https:/
## Create an ASP.NET Web App using OWIN Startup
-1. Create an empty Asp.Net web application and name it **StartupDemo**. - Install `Microsoft.Owin.Host.SystemWeb` using the NuGet package manager. From the **Tools** menu, select **Library Package Manager**, and then **Package Manager Console**. Enter the following command:
+1. Create an empty Asp.Net web application and name it **StartupDemo**. - Install `Microsoft.Owin.Host.SystemWeb` using the NuGet package manager. From the **Tools** menu, select **NuGet Package Manager**, and then **Package Manager Console**. Enter the following command:
[!code-powershell[Main](owin-startup-class-detection/samples/sample7.ps1)]
2. Add an OWIN startup class. In Visual Studio 2013 right click the project and select **Add Class**.- In the **Add New Item** dialog box, enter *OWIN* in the search field, and change the name to Startup.cs, and then click **Add**.
diff --git a/aspnet/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider.md b/aspnet/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider.md
index df0f601aa1..6e8cc1902d 100644
--- a/aspnet/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider.md
+++ b/aspnet/identity/overview/getting-started/aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider.md
@@ -28,28 +28,28 @@ At the end of this tutorial, you will have an MVC application with the ASP.NET I
## Creating a MySQL database instance on Azure
1. Log in to the [Azure Portal](https://go.microsoft.com/fwlink/?linkid=529715&clcid=0x409).
-2. Click **NEW** at the bottom of the page, and then select **STORE**:
-
+2. Click **NEW** at the bottom of the page, and then select **STORE**:
+
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image2.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image1.png)
-3. In the **Choose and Add-on** wizard, select **ClearDB MySQL Database**, and then click the **Next** arrow at the bottom of the frame:
-
- [Click the following image to expand it. ]
+3. In the **Choose and Add-on** wizard, select **ClearDB MySQL Database**, and then click the **Next** arrow at the bottom of the frame:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image4.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image3.png)
-4. Keep the default **Free** plan, change the **NAME** to **IdentityMySQLDatabase**, select the region that is nearest to you, and then click the **Next** arrow at the bottom of the frame:
-
- [Click the following image to expand it. ]
+4. Keep the default **Free** plan, change the **NAME** to **IdentityMySQLDatabase**, select the region that is nearest to you, and then click the **Next** arrow at the bottom of the frame:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image6.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image5.png)
-5. Click the **PURCHASE** checkmark to complete the database creation.
-
- [Click the following image to expand it. ]
+5. Click the **PURCHASE** checkmark to complete the database creation.
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image8.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image7.png)
-6. After your database has been created, you can manage it from the **ADD-ONS** tab in the management portal. To retrieve the connection information for your database, click **CONNECTION INFO** at the bottom of the page:
-
- [Click the following image to expand it. ]
+6. After your database has been created, you can manage it from the **ADD-ONS** tab in the management portal. To retrieve the connection information for your database, click **CONNECTION INFO** at the bottom of the page:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image10.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image9.png)
-7. Copy the connection string by clicking on the copy button by the **CONNECTIONSTRING** field and save it; you will use this information later in this tutorial for your MVC application:
-
- [Click the following image to expand it. ]
+7. Copy the connection string by clicking on the copy button by the **CONNECTIONSTRING** field and save it; you will use this information later in this tutorial for your MVC application:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image12.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image11.png)
## Creating an MVC application project
@@ -57,17 +57,17 @@ At the end of this tutorial, you will have an MVC application with the ASP.NET I
To complete the steps in this section of the tutorial, you will first need to install [Visual Studio Express 2013 for Web](https://go.microsoft.com/fwlink/?LinkId=299058) or [Visual Studio 2013](https://go.microsoft.com/fwlink/?LinkId=306566). Once Visual Studio has been installed, use the following steps to create a new MVC application project:
1. Open Visual Studio 2103.
-2. Click **New Project** from the **Start** page, or you can click the **File** menu and then **New Project**:
-
- [Click the following image to expand it. ]
+2. Click **New Project** from the **Start** page, or you can click the **File** menu and then **New Project**:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image2.jpg)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image1.jpg)
-3. When the **New Project** dialog box is displayed, expand **Visual C#** in the list of templates, then click **Web**, and select **ASP.NET Web Application**. Name your project **IdentityMySQLDemo** and then click **OK**:
-
- [Click the following image to expand it. ]
+3. When the **New Project** dialog box is displayed, expand **Visual C#** in the list of templates, then click **Web**, and select **ASP.NET Web Application**. Name your project **IdentityMySQLDemo** and then click **OK**:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image14.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image13.png)
-4. In the **New ASP.NET Project** dialog, select the **MVC** templatewith the default options; this will configure **Individual User Accounts** as the authentication method. Click **OK**:
-
- [Click the following image to expand it. ]
+4. In the **New ASP.NET Project** dialog, select the **MVC** templatewith the default options; this will configure **Individual User Accounts** as the authentication method. Click **OK**:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image16.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image15.png)
## Configure EntityFramework to work with a MySQL database
@@ -76,14 +76,14 @@ To complete the steps in this section of the tutorial, you will first need to in
The MVC application that was created from the Visual Studio 2013 template contains a reference to the [EntityFramework 6.0.0](http://www.nuget.org/packages/EntityFramework) package, but there have been updates to that assembly since its release which contain significant performance improvements. In order to use these latest updates in your application, use the following steps.
-1. Open your MVC project in Visual Studio 2013.
-2. Click **TOOLS**, then click **Library Package Manager**, and then click **Package Manager Console**:
-
- [Click the following image to expand it. ]
+1. Open your MVC project in Visual Studio.
+2. Click **Tools**, then click **NuGet Package Manager**, and then click **Package Manager Console**:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image18.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image17.png)
-3. The **Package Manager Console** will appear in the bottom section of Visual Studio. Type "**Update-Package EntityFramework**" and press Enter:
-
- [Click the following image to expand it. ]
+3. The **Package Manager Console** will appear in the bottom section of Visual Studio. Type "**Update-Package EntityFramework**" and press Enter:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image20.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image19.png)
### Install the MySQL provider for EntityFramework
@@ -94,8 +94,8 @@ In order for EntityFramework to connect to MySQL database, you need to install a
> This is a pre-release version of the assembly, and as such it may contain bugs. You should not use a pre-release version of the provider in production.
-[Click the following image to expand it.]
-
+[Click the following image to expand it.]
+
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image22.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image21.png)
### Making project configuration changes to the Web.config file for your application
@@ -110,7 +110,7 @@ In this section you will configure the Entity Framework to use the MySQL provide
2. Locate the following configuration settings, which define the default database provider and factory for the Entity Framework:
[!code-xml[Main](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/samples/sample1.xml)]
-3. Replace those configuration settings with the following, which will configure the Entity Framework to use the MySQL provider:
+3. Replace those configuration settings with the following, which will configure the Entity Framework to use the MySQL provider:
[!code-xml[Main](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/samples/sample2.xml)]
4. Locate the <connectionStrings> section and replace it with the following code, which will define the connection string for your MySQL database that is hosted on Azure (note that providerName value has also been changed from the original):
@@ -138,10 +138,10 @@ The MySQL provider that is featured in this tutorial does not currently support
To create a custom Entity Framework initializer for MySQL, use the following steps:
-1. Add a new class file named **MySqlInitializer.cs** to the project, and replace it's contents with the following code:
+1. Add a new class file named **MySqlInitializer.cs** to the project, and replace it's contents with the following code:
[!code-csharp[Main](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/samples/sample6.cs?highlight=23)]
-2. Open the **IdentityModels.cs** file for your project, which is located in the **Models** directory, and replace it's contents with the following:
+2. Open the **IdentityModels.cs** file for your project, which is located in the **Models** directory, and replace it's contents with the following:
[!code-csharp[Main](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/samples/sample7.cs)]
@@ -150,17 +150,17 @@ To create a custom Entity Framework initializer for MySQL, use the following ste
Once you have completed the steps in the preceding sections, you should test your database. To do so, use the following steps:
1. Press **Ctrl + F5** to build and run the web application.
-2. Click the **Register** tab on the top of the page:
-
- [Click the following image to expand it. ]
+2. Click the **Register** tab on the top of the page:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image4.jpg)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image3.jpg)
-3. Enter a new user name and password, and then click **Register**:
-
- [Click the following image to expand it. ]
+3. Enter a new user name and password, and then click **Register**:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image24.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image23.png)
-4. At this point the ASP.NET Identity tables are created on the MySQL Database, and the user is registered and logged into the application:
-
- [Click the following image to expand it. ]
+4. At this point the ASP.NET Identity tables are created on the MySQL Database, and the user is registered and logged into the application:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image6.jpg)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image5.jpg)
### Installing MySQL Workbench tool to verify the data
@@ -169,11 +169,11 @@ Once you have completed the steps in the preceding sections, you should test you
2. In the installation wizard: **Feature Selection** tab, select **MySQL Workbench** under **applications** section.
3. Launch the app and add a new connection using the connection string data from the Azure MySQL database you created at the begging of this tutorial.
4. After establishing the connection, inspect the **ASP.NET Identity** tables created on the **IdentityMySQLDatabase.**
-5. You will see that all ASP.NET Identity required tables are created as shown in the image below:
-
- [Click the following image to expand it. ]
+5. You will see that all ASP.NET Identity required tables are created as shown in the image below:
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image8.jpg)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image7.jpg)
-6. Inspect the **aspnetusers** table for instance to check for the entries as you register new users.
-
- [Click the following image to expand it. ]
+6. Inspect the **aspnetusers** table for instance to check for the entries as you register new users.
+
+ [Click the following image to expand it. ]
[![](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image26.png)](aspnet-identity-using-mysql-storage-with-an-entityframework-mysql-provider/_static/image25.png)
diff --git a/aspnet/mvc/overview/getting-started/introduction/examining-the-edit-methods-and-edit-view.md b/aspnet/mvc/overview/getting-started/introduction/examining-the-edit-methods-and-edit-view.md
index 09c91c54d8..35b650fca3 100644
--- a/aspnet/mvc/overview/getting-started/introduction/examining-the-edit-methods-and-edit-view.md
+++ b/aspnet/mvc/overview/getting-started/introduction/examining-the-edit-methods-and-edit-view.md
@@ -93,16 +93,15 @@ If you are using a US-English computer, you can skip this section and go to the
> [!NOTE]
> to support jQuery validation for non-English locales that use a comma (",") for a decimal point, and non US-English date formats, you must include *globalize.js* and your specific *cultures/globalize.cultures.js* file(from [https://github.com/jquery/globalize](https://github.com/jquery/globalize) ) and JavaScript to use `Globalize.parseFloat`. You can get the jQuery non-English validation from NuGet. (Don't install Globalize if you are using a English locale.)
+1. From the **Tools** menu click **NuGet Package Manager**, and then click **Manage NuGet Packages for Solution**.
-1. From the **Tools** menu click **NuGetLibrary Package Manager**, and then click **Manage NuGet Packages for Solution**.
-
![](examining-the-edit-methods-and-edit-view/_static/image5.png)
2. On the left pane, select Browse*.*(See the image below.)
-3. In the input box, enter *Globalize**.
-
+3. In the input box, enter *Globalize**.
+
![](examining-the-edit-methods-and-edit-view/_static/image6.png) Choose `jQuery.Validation.Globalize`, choose `MvcMovie` and click **Install**. The *Scripts\jquery.globalize\globalize.js* file will be added to your project. The *Scripts\jquery.globalize\cultures\* folder will contain many culture JavaScript files. Note, it may take five minutes to install this package.
- The following code shows the modifications to the Views\Movies\Edit.cshtml file:
+ The following code shows the modifications to the Views\Movies\Edit.cshtml file:
[!code-cshtml[Main](examining-the-edit-methods-and-edit-view/samples/sample10.cshtml)]
diff --git a/aspnet/mvc/overview/older-versions/aspnet-mvc-4-mobile-features.md b/aspnet/mvc/overview/older-versions/aspnet-mvc-4-mobile-features.md
index 84665386a2..b7accd91e0 100644
--- a/aspnet/mvc/overview/older-versions/aspnet-mvc-4-mobile-features.md
+++ b/aspnet/mvc/overview/older-versions/aspnet-mvc-4-mobile-features.md
@@ -178,7 +178,7 @@ Rename *Views\Home\AllTags.Mobile.cshtml* and *Views\Home\AllTags.iPhone.cshtml*
Install the *jQuery.Mobile.MVC* NuGet package by doing this:
-1. From the **Tools** menu, select **Library Package Manager**, and then select **Package Manager Console**.
+1. From the **Tools** menu, select **NuGet Package Manager**, and then select **Package Manager Console**.
[![p3_packageMgr](aspnet-mvc-4-mobile-features/_static/image20.png)](aspnet-mvc-4-mobile-features/_static/image19.png)
2. In the **Package Manager Console**, enter `Install-Package jQuery.Mobile.MVC -version 1.0.0`
@@ -239,11 +239,11 @@ Refresh the *AllTags* view in the mobile browser. You can now navigate between d
> [!NOTE]
> Debug note: You can add the following code to the end of the Views\Shared\\_ViewSwitcher.cshtml to help debug views when using a browser the user agent string set to a mobile device.
->
+>
> [!code-csharp[Main](aspnet-mvc-4-mobile-features/samples/sample15.cs)]
->
-> and adding the following heading to the *Views\Shared\\_Layout.cshtml* file.
->
+>
+> and adding the following heading to the *Views\Shared\\_Layout.cshtml* file.
+>
> [!code-html[Main](aspnet-mvc-4-mobile-features/samples/sample16.html)]
diff --git a/aspnet/mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table.md b/aspnet/mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table.md
index 3f02c5e0a1..caa0823a4b 100644
--- a/aspnet/mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table.md
+++ b/aspnet/mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table.md
@@ -35,7 +35,7 @@ Navigate back to Solution Explorer. Right click on the *Movies.mdf* file and sel
Build the application to make sure there are no errors.
-From the **Tools** menu, click **Library Package Manager** and then **Package Manager Console**.
+From the **Tools** menu, click **NuGet Package Manager** and then **Package Manager Console**.
![Add Pack Man](adding-a-new-field-to-the-movie-model-and-table/_static/image3.png)
diff --git a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/building-the-ef5-mvc4-chapter-downloads.md b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/building-the-ef5-mvc4-chapter-downloads.md
index c1958d7e9b..21213f9711 100644
--- a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/building-the-ef5-mvc4-chapter-downloads.md
+++ b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/building-the-ef5-mvc4-chapter-downloads.md
@@ -26,7 +26,7 @@ by [Rick Anderson]((https://twitter.com/RickAndMSFT))
![](building-the-ef5-mvc4-chapter-downloads/_static/image1.png)
3. Unzip the file.
4. Double-click the *CUx.sln* file to launch Visual Studio.
-5. From the **Tools** menu, click **Library Package Manager**, then **Package Manager Console**.
+5. From the **Tools** menu, click **NuGet Package Manager**, then **Package Manager Console**.
![](building-the-ef5-mvc4-chapter-downloads/_static/image2.png)
6. In the Package Manager Console (PMC), click **Restore**.
diff --git a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application.md b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application.md
index 1c5a0e7bd7..98dbdfa924 100644
--- a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application.md
+++ b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application.md
@@ -204,7 +204,7 @@ When you first start to develop an application, your data model changes frequent
### Enable Code First Migrations
-1. From the **Tools** menu, click **Library Package Manager** and then **Package Manager Console**.
+1. From the **Tools** menu, click **NuGet Package Manager** and then **Package Manager Console**.
![Selecting_Package_Manager_Console](creating-an-entity-framework-data-model-for-an-asp-net-mvc-application/_static/image10.png)
2. At the `PM>` prompt enter the following command:
diff --git a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application.md b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application.md
index e49c843118..c3b433e9a0 100644
--- a/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application.md
+++ b/aspnet/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application.md
@@ -111,7 +111,7 @@ To add paging to the Students Index page, you'll start by installing the **Paged
The NuGet **PagedList.Mvc** package automatically installs the **PagedList** package as a dependency. The **PagedList** package installs a `PagedList` collection type and extension methods for `IQueryable` and `IEnumerable` collections. The extension methods create a single page of data in a `PagedList` collection out of your `IQueryable` or `IEnumerable`, and the `PagedList` collection provides several properties and methods that facilitate paging. The **PagedList.Mvc** package installs a paging helper that displays the paging buttons.
-From the **Tools** menu, select **Library Package Manager** and then **Manage NuGet Packages for Solution**.
+From the **Tools** menu, select **NuGet Package Manager** and then **Manage NuGet Packages for Solution**.
In the **Manage NuGet Packages** dialog box, click the **Online** tab on the left and then enter "paged" in the search box. When you see the **PagedList.Mvc** package, click **Install**.
diff --git a/aspnet/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-entity-framework-scaffolding-and-migrations.md b/aspnet/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-entity-framework-scaffolding-and-migrations.md
index f3ab07dd38..6fc87e493e 100644
--- a/aspnet/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-entity-framework-scaffolding-and-migrations.md
+++ b/aspnet/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-entity-framework-scaffolding-and-migrations.md
@@ -166,7 +166,7 @@ At this point, the database is not yet created. In this task, you will run the a
In this task you will update the database using Entity Framework Migrations. You will discover how easy it is to change the model and reflect the changes in your databases by using the Entity Framework Migrations feature.
-1. Open the Package Manager Console. Select **Tools | Library Package Manager | Package Manager Console**.
+1. Open the Package Manager Console. Select **Tools** > **NuGet Package Manager** > **Package Manager Console**.
2. In the Package Manager Console, enter the following command:
PMC
diff --git a/aspnet/mvc/overview/older-versions/hands-on-labs/whats-new-in-aspnet-mvc-4.md b/aspnet/mvc/overview/older-versions/hands-on-labs/whats-new-in-aspnet-mvc-4.md
index 434381032d..ff262a5722 100644
--- a/aspnet/mvc/overview/older-versions/hands-on-labs/whats-new-in-aspnet-mvc-4.md
+++ b/aspnet/mvc/overview/older-versions/hands-on-labs/whats-new-in-aspnet-mvc-4.md
@@ -376,7 +376,7 @@ One of the key updates in ASP.NET MVC 4 is the support for mobile development. I
> [!NOTE]
> One of the advantages of using NuGet is that you don't have to ship all the libraries in your project, reducing the project size. With NuGet Power Tools, by specifying the package versions in the Packages.config file, you will be able to download all the required libraries the first time you run the project. This is why you will have to run these steps after you open an existing solution from this lab.
-2. Open the **Package Manager Console** by clicking the **Tools** > **Library Package Manager** > **Package Manager Console** menu option.
+2. Open the **Package Manager Console** by clicking the **Tools** > **NuGet Package Manager** > **Package Manager Console** menu option.
![Opening the NuGet Package Manager Console](whats-new-in-aspnet-mvc-4/_static/image22.png "Opening the NuGet Package Manager Console")
diff --git a/aspnet/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4.md b/aspnet/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4.md
index 2475b25ddf..33f0fdaf63 100644
--- a/aspnet/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4.md
+++ b/aspnet/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4.md
@@ -70,13 +70,13 @@ In this section you'll add the [jQuery UI datepicker](http://jqueryui.com/demos/
First, you have to install the jQuery UI libraries. To do that, you'll use NuGet, which is a package manager that's included in SP1 versions of Visual Studio 2010 and Visual Web Developer.
-In Visual Web Developer, from the **Tools** menu, select **Library Package Manager** and then select **Manage NuGet Packages**.
+In Visual Web Developer, from the **Tools** menu, select **NuGet Package Manager** and then select **Manage NuGet Packages**.
![](using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4/_static/image3.png)
-Note: If the **Tools** menu doesn't display the **Library Package Manager** command, you need to install NuGet by following the instructions on the [Installing NuGet](http://docs.nuget.org/docs/start-here/installing-nuget) page of the NuGet website.
+Note: If the **Tools** menu doesn't display the **NuGet Package Manager** command, you need to install NuGet by following the instructions on the [Installing NuGet](http://docs.nuget.org/docs/start-here/installing-nuget) page of the NuGet website.
-If you're using Visual Studio instead of Visual Web Developer, from the **Tools** menu, select **Library Package Manager** and then select **Add Library Package Reference**.
+If you're using Visual Studio instead of Visual Web Developer, from the **Tools** menu, select **NuGet Package Manager** and then select **Add Library Package Reference**.
![](using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4/_static/image4.png)
diff --git a/aspnet/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2.md b/aspnet/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2.md
index 44fa291aeb..cba7b44932 100644
--- a/aspnet/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2.md
+++ b/aspnet/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2.md
@@ -65,8 +65,8 @@ by [Rick Anderson]((https://twitter.com/RickAndMSFT))
> Microsoft-Web-Helpers has been replaced with Microsoft.AspNet.WebHelpers. You should remove the old package first, and then install the newer package.
>
> There is no cross version compatibility among major ASP.NET packages. For example, MVC 5 is compatible with only Razor 3, and not Razor 2.
-4. Open your project in Visual Studio 2013.
-5. Remove any of the following ASP.NET NuGet packages that are installed. You will remove these using the Package Manager Console (PMC). To open the PMC, select the **Tools** menu and then select **Library Package Manager,** then select **Package Manager Console**. Your project might not include all of these.
+4. Open your project in Visual Studio.
+5. Remove any of the following ASP.NET NuGet packages that are installed. You will remove these using the Package Manager Console (PMC). To open the PMC, select the **Tools** menu and then select **NuGet Package Manager,** then select **Package Manager Console**. Your project might not include all of these.
1. `Microsoft.AspNet.WebPages.Administration`
This package is typically added when upgrading from MVC 3 to MVC 4. To remove it, run the following command in the PMC:
diff --git a/aspnet/signalr/overview/advanced/dependency-injection.md b/aspnet/signalr/overview/advanced/dependency-injection.md
index a0065fa178..d6bf7920e7 100644
--- a/aspnet/signalr/overview/advanced/dependency-injection.md
+++ b/aspnet/signalr/overview/advanced/dependency-injection.md
@@ -134,7 +134,7 @@ Creating an `IStockTicker` interface isn't strictly necessary, but I wanted to s
There are many open-source IoC containers for .NET. For this tutorial, I'll use [Ninject](http://www.ninject.org/). (Other popular libraries include [Castle Windsor](http://www.castleproject.org/), [Spring.Net](http://www.springframework.net/), [Autofac](https://code.google.com/p/autofac/), [Unity](https://github.com/unitycontainer/unity), and [StructureMap](http://docs.structuremap.net).)
-Use NuGet Package Manager to install the [Ninject library](https://nuget.org/packages/Ninject/3.0.1.10). In Visual Studio, from the **Tools** menu select **Library Package Manager** | **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Use NuGet Package Manager to install the [Ninject library](https://nuget.org/packages/Ninject/3.0.1.10). In Visual Studio, from the **Tools** menu select **NuGet Package Manager** > **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](dependency-injection/samples/sample13.ps1)]
diff --git a/aspnet/signalr/overview/deployment/tutorial-signalr-self-host.md b/aspnet/signalr/overview/deployment/tutorial-signalr-self-host.md
index 3348724730..c6eac4e52e 100644
--- a/aspnet/signalr/overview/deployment/tutorial-signalr-self-host.md
+++ b/aspnet/signalr/overview/deployment/tutorial-signalr-self-host.md
@@ -68,7 +68,7 @@ In this tutorial, you'll create a server that's hosted in a console application,
1. Open Visual Studio 2013 with administrator privileges. Select **File**, **New Project**. Select **Windows** under the **Visual C#** node in the **Templates** pane, and select the **Console Application** template. Name the new project "SignalRSelfHost" and click **OK**.
![](tutorial-signalr-self-host/_static/image1.png)
-2. Open the library package manager console by selecting **Tools**, **Library Package Manager**, **Package Manager Console**.
+2. Open the NuGet package manager console by selecting **Tools** > **NuGet Package Manager** > **Package Manager Console**.
3. In the package manager console, enter the following command:
[!code-powershell[Main](tutorial-signalr-self-host/samples/sample1.ps1)]
diff --git a/aspnet/signalr/overview/getting-started/real-time-web-applications-with-signalr.md b/aspnet/signalr/overview/getting-started/real-time-web-applications-with-signalr.md
index c6552b39ce..a3a794446b 100644
--- a/aspnet/signalr/overview/getting-started/real-time-web-applications-with-signalr.md
+++ b/aspnet/signalr/overview/getting-started/real-time-web-applications-with-signalr.md
@@ -142,7 +142,7 @@ In this task, you will go through the application and verify how the statistics
In this task, you will add SignalR to the solution and send updates to the clients automatically when a new answer is sent to the server.
-1. From the **Tools** menu in Visual Studio, select **Library Package Manager**, and then click **Package Manager Console**.
+1. From the **Tools** menu in Visual Studio, select **NuGet Package Manager**, and then click **Package Manager Console**.
2. In the **Package Manager Console** window, execute the following command:
[!code-powershell[Main](real-time-web-applications-with-signalr/samples/sample1.ps1)]
@@ -356,7 +356,7 @@ In this task, you will create a database that will serve as a backplane for the
In this task, you will configure **Geek Quiz** to connect to the SQL Server backplane. You will first add the **SignalR.SqlServer** NuGet package and set the connection string to your backplane database.
-1. Open the **Package Manager Console** from **Tools** | **Library Package Manager**. Make sure that **GeekQuiz** project is selected in the **Default project** drop-down list. Type the following command to install the **Microsoft.AspNet.SignalR.SqlServer** NuGet package.
+1. Open the **Package Manager Console** from **Tools** > **NuGet Package Manager**. Make sure that **GeekQuiz** project is selected in the **Default project** drop-down list. Type the following command to install the **Microsoft.AspNet.SignalR.SqlServer** NuGet package.
[!code-powershell[Main](real-time-web-applications-with-signalr/samples/sample13.ps1)]
2. Repeat the previous step but this time for project **GeekQuiz2**.
diff --git a/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc.md b/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc.md
index e952ff0b1b..acb5da6bd3 100644
--- a/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc.md
+++ b/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc.md
@@ -91,7 +91,7 @@ This section shows how to create an ASP.NET MVC 5 application, add the SignalR l
> [!NOTE]
> If you select a different authentication provider for your application, a `Startup.cs` class will be created for you; you will not need to create your own `Startup.cs` class in step 10 below.
4. Click **OK** in the **New ASP.NET Project** dialog.
-5. Open the **Tools | Library Package Manager | Package Manager Console** and run the following command. This step adds to the project a set of script files and assembly references that enable SignalR functionality.
+5. Open the **Tools > NuGet Package Manager > Package Manager Console** and run the following command. This step adds to the project a set of script files and assembly references that enable SignalR functionality.
`install-package Microsoft.AspNet.SignalR`
6. In **Solution Explorer**, expand the Scripts folder. Note that script libraries for SignalR have been added to the project.
diff --git a/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr.md b/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr.md
index 71837caade..dfc70f940c 100644
--- a/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr.md
+++ b/aspnet/signalr/overview/getting-started/tutorial-getting-started-with-signalr.md
@@ -96,7 +96,7 @@ The following steps use Visual Studio 2013 to create an ASP.NET Empty Web Applic
3. In **Solution Explorer**, right-click the project, select **Add | SignalR Hub Class (v2)**. Name the class **ChatHub.cs** and add it to the project. This step creates the **ChatHub** class and adds to the project a set of script files and assembly references that support SignalR.
> [!NOTE]
- > You can also add SignalR to a project by opening the **Tools | Library Package Manager | Package Manager Console** and running a command:
+ > You can also add SignalR to a project by opening the **Tools > NuGet Package Manager > Package Manager Console** and running a command:
`install-package Microsoft.AspNet.SignalR`
diff --git a/aspnet/signalr/overview/getting-started/tutorial-high-frequency-realtime-with-signalr.md b/aspnet/signalr/overview/getting-started/tutorial-high-frequency-realtime-with-signalr.md
index 8a5c553154..f01f0f11fd 100644
--- a/aspnet/signalr/overview/getting-started/tutorial-high-frequency-realtime-with-signalr.md
+++ b/aspnet/signalr/overview/getting-started/tutorial-high-frequency-realtime-with-signalr.md
@@ -96,12 +96,12 @@ The following steps use Visual Studio 2013 to create an ASP.NET Empty Web Applic
3. In **Solution Explorer**, right-click the project, select **Add | SignalR Hub Class (v2)**. Name the class **MoveShapeHub.cs** and add it to the project. This step creates the **MoveShapeHub** class and adds to the project a set of script files and assembly references that support SignalR.
> [!NOTE]
- > You can also add SignalR to a project by clicking **Tools | Library Package Manager | Package Manager Console** and running a command:
+ > You can also add SignalR to a project by clicking **Tools > NuGet Package Manager > Package Manager Console** and running a command:
`install-package Microsoft.AspNet.SignalR`.
If you use the console to add SignalR, create the SignalR hub class as a separate step after you add SignalR.
-4. Click **Tools | Library Package Manager | Package Manager Console**. In the package manager window, run the following command:
+4. Click **Tools > NuGet Package Manager > Package Manager Console**. In the package manager window, run the following command:
`Install-Package jQuery.UI.Combined`
diff --git a/aspnet/signalr/overview/older-versions/dependency-injection.md b/aspnet/signalr/overview/older-versions/dependency-injection.md
index 148dc6cdf0..161d71b232 100644
--- a/aspnet/signalr/overview/older-versions/dependency-injection.md
+++ b/aspnet/signalr/overview/older-versions/dependency-injection.md
@@ -116,7 +116,7 @@ Creating an `IStockTicker` interface isn't strictly necessary, but I wanted to s
There are many open-source IoC containers for .NET. For this tutorial, I'll use [Ninject](http://www.ninject.org/). (Other popular libraries include [Castle Windsor](http://www.castleproject.org/), [Spring.Net](http://www.springframework.net/), [Autofac](https://code.google.com/p/autofac/), [Unity](https://github.com/unitycontainer/unity), and [StructureMap](http://docs.structuremap.net).)
-Use NuGet Package Manager to install the [Ninject library](https://nuget.org/packages/Ninject/3.0.1.10). In Visual Studio, from the **Tools** menu select **Library Package Manager** | **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Use NuGet Package Manager to install the [Ninject library](https://nuget.org/packages/Ninject/3.0.1.10). In Visual Studio, from the **Tools** menu select **NuGet Package Manager** > **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](dependency-injection/samples/sample13.ps1)]
diff --git a/aspnet/signalr/overview/older-versions/scaleout-with-redis.md b/aspnet/signalr/overview/older-versions/scaleout-with-redis.md
index c027711a0c..f3afa3c206 100644
--- a/aspnet/signalr/overview/older-versions/scaleout-with-redis.md
+++ b/aspnet/signalr/overview/older-versions/scaleout-with-redis.md
@@ -88,7 +88,7 @@ Create a SignalR application by following either of these tutorials:
- [Getting Started with SignalR](../getting-started/tutorial-getting-started-with-signalr.md)
- [Getting Started with SignalR and MVC 4](tutorial-getting-started-with-signalr-and-mvc-4.md)
-Next, we'll modify the chat application to support scaleout with Redis. First, add the SignalR.Redis NuGet package to your project. In Visual Studio, from the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Next, we'll modify the chat application to support scaleout with Redis. First, add the SignalR.Redis NuGet package to your project. In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](scaleout-with-redis/samples/sample5.ps1)]
diff --git a/aspnet/signalr/overview/older-versions/scaleout-with-sql-server.md b/aspnet/signalr/overview/older-versions/scaleout-with-sql-server.md
index 038938318a..aed0051a4f 100644
--- a/aspnet/signalr/overview/older-versions/scaleout-with-sql-server.md
+++ b/aspnet/signalr/overview/older-versions/scaleout-with-sql-server.md
@@ -60,7 +60,6 @@ To enable Service Broker, use the following SQL query:
> [!NOTE]
> If this query appears to deadlock, make sure there are no applications connected to the DB.
-
If you have enabled tracing, the traces will also show whether Service Broker is enabled.
## Create a SignalR Application
@@ -70,7 +69,7 @@ Create a SignalR application by following either of these tutorials:
- [Getting Started with SignalR](../getting-started/tutorial-getting-started-with-signalr.md)
- [Getting Started with SignalR and MVC 4](tutorial-getting-started-with-signalr-and-mvc-4.md)
-Next, we'll modify the chat application to support scaleout with SQL Server. First, add the SignalR.SqlServer NuGet package to your project. In Visual Studio, from the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Next, we'll modify the chat application to support scaleout with SQL Server. First, add the SignalR.SqlServer NuGet package to your project. In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](scaleout-with-sql-server/samples/sample4.ps1)]
diff --git a/aspnet/signalr/overview/older-versions/scaleout-with-windows-azure-service-bus.md b/aspnet/signalr/overview/older-versions/scaleout-with-windows-azure-service-bus.md
index aa62271dbe..9514397265 100644
--- a/aspnet/signalr/overview/older-versions/scaleout-with-windows-azure-service-bus.md
+++ b/aspnet/signalr/overview/older-versions/scaleout-with-windows-azure-service-bus.md
@@ -82,7 +82,7 @@ In the **New ASP.NET MVC 4 Project** wizard, select **Internet Application**. Cl
To create the chat application, follow the steps in the tutorial [Getting Started with SignalR and MVC 4](tutorial-getting-started-with-signalr-and-mvc-4.md).
-Use NuGet to install the required libraries. From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the **Package Manager Console** window, enter the following commands:
+Use NuGet to install the required libraries. From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the **Package Manager Console** window, enter the following commands:
[!code-powershell[Main](scaleout-with-windows-azure-service-bus/samples/sample2.ps1)]
diff --git a/aspnet/signalr/overview/older-versions/signalr-performance.md b/aspnet/signalr/overview/older-versions/signalr-performance.md
index 419117881d..25c15fa713 100644
--- a/aspnet/signalr/overview/older-versions/signalr-performance.md
+++ b/aspnet/signalr/overview/older-versions/signalr-performance.md
@@ -113,7 +113,7 @@ This section describes how to enable and use SignalR performance counters, found
Peformance counters can be added to the server using a utility called SignalR.exe. To install this utility, follow these steps:
-1. In your Visual Studio application, select **Tools**, **Library Package Manager**, **Manage NuGet Packages for Solution...**
+1. In Visual Studio, select **Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**
2. Search for **signalr.utils**, and select Install.
![](signalr-performance/_static/image1.png)
diff --git a/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr-and-mvc-4.md b/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr-and-mvc-4.md
index fc98e99e95..a6a2a680d9 100644
--- a/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr-and-mvc-4.md
+++ b/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr-and-mvc-4.md
@@ -57,7 +57,7 @@ This section shows how to create an ASP.NET MVC 4 application, add the SignalR l
2. Select the Internet Application template, clear the option to **Create a unit test project**, and click OK.
![Create mvc internet site](tutorial-getting-started-with-signalr-and-mvc-4/_static/image4.png)
- 3. Open the **Tools | Library Package Manager | Package Manager Console** and run the following command. This step adds to the project a set of script files and assembly references that enable SignalR functionality.
+ 3. Open the **Tools > NuGet Package Manager > Package Manager Console** and run the following command. This step adds to the project a set of script files and assembly references that enable SignalR functionality.
`install-package Microsoft.AspNet.SignalR -Version 1.1.3`
4. In **Solution Explorer** expand the Scripts folder. Note that script libraries for SignalR have been added to the project.
diff --git a/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr.md b/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr.md
index 2bb2bc67dc..2708128c99 100644
--- a/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr.md
+++ b/aspnet/signalr/overview/older-versions/tutorial-getting-started-with-signalr.md
@@ -60,7 +60,7 @@ The following steps use Visual Studio 2012 to create an ASP.NET Empty Web Applic
1. In Visual Studio create an ASP.NET Empty Web Application.
![Create empty web](tutorial-getting-started-with-signalr/_static/image2.png)
-2. Open the **Package Manager Console** by selecting **Tools | Library Package Manager | Package Manager Console**. Enter the following command into the console window:
+2. Open the **Package Manager Console** by selecting **Tools | NuGet Package Manager | Package Manager Console**. Enter the following command into the console window:
`Install-Package Microsoft.AspNet.SignalR -Version 1.1.3`
diff --git a/aspnet/signalr/overview/older-versions/tutorial-high-frequency-realtime-with-signalr.md b/aspnet/signalr/overview/older-versions/tutorial-high-frequency-realtime-with-signalr.md
index 326b924f6a..877db04afb 100644
--- a/aspnet/signalr/overview/older-versions/tutorial-high-frequency-realtime-with-signalr.md
+++ b/aspnet/signalr/overview/older-versions/tutorial-high-frequency-realtime-with-signalr.md
@@ -73,7 +73,7 @@ In this section, we'll create the project in Visual Studio.
You can add SignalR functionality to a project by installing a NuGet package. This tutorial will also use the JQuery.UI package for allowing the shape to be dragged and animated.
-1. Click **Tools | Library Package Manager | Package Manager Console**.
+1. Click **Tools | NuGet Package Manager | Package Manager Console**.
2. Enter the following command in the package manager.
[!code-powershell[Main](tutorial-high-frequency-realtime-with-signalr/samples/sample1.ps1)]
diff --git a/aspnet/signalr/overview/older-versions/tutorial-server-broadcast-with-aspnet-signalr.md b/aspnet/signalr/overview/older-versions/tutorial-server-broadcast-with-aspnet-signalr.md
index 01a8e480a2..a7ca73d926 100644
--- a/aspnet/signalr/overview/older-versions/tutorial-server-broadcast-with-aspnet-signalr.md
+++ b/aspnet/signalr/overview/older-versions/tutorial-server-broadcast-with-aspnet-signalr.md
@@ -74,7 +74,7 @@ If you have Visual Studio 2010, make sure that [NuGet](https://visualstudiogalle
You can add SignalR functionality to a project by installing a NuGet package.
-1. Click **Tools | Library Package Manager | Package Manager Console**.
+1. Click **Tools | NuGet Package Manager | Package Manager Console**.
2. Enter the following command in the package manager.
[!code-powershell[Main](tutorial-server-broadcast-with-aspnet-signalr/samples/sample1.ps1)]
diff --git a/aspnet/signalr/overview/performance/scaleout-with-redis.md b/aspnet/signalr/overview/performance/scaleout-with-redis.md
index 9e4de065d4..cba13c9055 100644
--- a/aspnet/signalr/overview/performance/scaleout-with-redis.md
+++ b/aspnet/signalr/overview/performance/scaleout-with-redis.md
@@ -106,7 +106,7 @@ Create a SignalR application by following either of these tutorials:
- [Getting Started with SignalR 2.0](../getting-started/tutorial-getting-started-with-signalr.md)
- [Getting Started with SignalR 2.0 and MVC 5](../getting-started/tutorial-getting-started-with-signalr-and-mvc.md)
-Next, we'll modify the chat application to support scaleout with Redis. First, add the SignalR.Redis NuGet package to your project. In Visual Studio, from the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Next, we'll modify the chat application to support scaleout with Redis. First, add the SignalR.Redis NuGet package to your project. In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](scaleout-with-redis/samples/sample5.ps1)]
diff --git a/aspnet/signalr/overview/performance/scaleout-with-sql-server.md b/aspnet/signalr/overview/performance/scaleout-with-sql-server.md
index fbe98fec2d..c5c51398c0 100644
--- a/aspnet/signalr/overview/performance/scaleout-with-sql-server.md
+++ b/aspnet/signalr/overview/performance/scaleout-with-sql-server.md
@@ -90,7 +90,7 @@ Create a SignalR application by following either of these tutorials:
- [Getting Started with SignalR 2.0](../getting-started/tutorial-getting-started-with-signalr.md)
- [Getting Started with SignalR 2.0 and MVC 5](../getting-started/tutorial-getting-started-with-signalr-and-mvc.md)
-Next, we'll modify the chat application to support scaleout with SQL Server. First, add the SignalR.SqlServer NuGet package to your project. In Visual Studio, from the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+Next, we'll modify the chat application to support scaleout with SQL Server. First, add the SignalR.SqlServer NuGet package to your project. In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-powershell[Main](scaleout-with-sql-server/samples/sample4.ps1)]
diff --git a/aspnet/signalr/overview/performance/scaleout-with-windows-azure-service-bus.md b/aspnet/signalr/overview/performance/scaleout-with-windows-azure-service-bus.md
index fff7e5031d..0824981b31 100644
--- a/aspnet/signalr/overview/performance/scaleout-with-windows-azure-service-bus.md
+++ b/aspnet/signalr/overview/performance/scaleout-with-windows-azure-service-bus.md
@@ -88,7 +88,7 @@ The project wizard creates two projects:
To create the chat application, follow the steps in the tutorial [Getting Started with SignalR and MVC 5](../getting-started/tutorial-getting-started-with-signalr-and-mvc.md).
-Use NuGet to install the required libraries. From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the **Package Manager Console** window, enter the following commands:
+Use NuGet to install the required libraries. From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the **Package Manager Console** window, enter the following commands:
[!code-powershell[Main](scaleout-with-windows-azure-service-bus/samples/sample2.ps1)]
diff --git a/aspnet/signalr/overview/performance/signalr-performance.md b/aspnet/signalr/overview/performance/signalr-performance.md
index b6e2704cd9..f01a653557 100644
--- a/aspnet/signalr/overview/performance/signalr-performance.md
+++ b/aspnet/signalr/overview/performance/signalr-performance.md
@@ -133,7 +133,7 @@ This section describes how to enable and use SignalR performance counters, found
Performance counters can be added to the server using a utility called SignalR.exe. To install this utility, follow these steps:
-1. In your Visual Studio application, select **Tools**, **Library Package Manager**, **Manage NuGet Packages for Solution...**
+1. In Visual Studio, select **Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**
2. Search for **signalr.utils**, and select Install.
![](signalr-performance/_static/image1.png)
diff --git a/aspnet/visual-studio/overview/2013/one-aspnet-integrating-aspnet-web-forms-mvc-and-web-api.md b/aspnet/visual-studio/overview/2013/one-aspnet-integrating-aspnet-web-forms-mvc-and-web-api.md
index 15fd42da7e..4bcc733fe3 100644
--- a/aspnet/visual-studio/overview/2013/one-aspnet-integrating-aspnet-web-forms-mvc-and-web-api.md
+++ b/aspnet/visual-studio/overview/2013/one-aspnet-integrating-aspnet-web-forms-mvc-and-web-api.md
@@ -366,7 +366,7 @@ In this task you will use the Internet Explorer **F12 developer tools** to inspe
When you create a Web API, it is useful to create a help page so that other developers will know how to call your API. You could create and update the documentation pages manually, but it is better to auto-generate them to avoid having to do maintenance work. In this task you will use a Nuget package to automatically generate Web API help pages to the solution.
-1. From the **Tools** menu in Visual Studio, select **Library Package Manager**, and then click **Package Manager Console**.
+1. From the **Tools** menu in Visual Studio, select **NuGet Package Manager**, and then click **Package Manager Console**.
2. In the **Package Manager Console** window, execute the following command:
[!code-powershell[Main](one-aspnet-integrating-aspnet-web-forms-mvc-and-web-api/samples/sample7.ps1)]
diff --git a/aspnet/web-api/overview/advanced/dependency-injection.md b/aspnet/web-api/overview/advanced/dependency-injection.md
index d1315dff9b..28e12d8bc0 100644
--- a/aspnet/web-api/overview/advanced/dependency-injection.md
+++ b/aspnet/web-api/overview/advanced/dependency-injection.md
@@ -82,7 +82,7 @@ An IoC container is a software component that is responsible for managing depend
> "IoC" stands for "inversion of control", which is a general pattern where a framework calls into application code. An IoC container constructs your objects for you, which "inverts" the usual flow of control.
-For this tutorial, we'll use [Unity](https://msdn.microsoft.com/library/ff647202.aspx) from Microsoft Patterns & Practices. (Other popular libraries include [Castle Windsor](http://www.castleproject.org/), [Spring.Net](http://www.springframework.net/), [Autofac](https://code.google.com/p/autofac/), [Ninject](http://www.ninject.org/), and [StructureMap](http://docs.structuremap.net/).) You can use NuGet Package Manager to install Unity. From the **Tools** menu in Visual Studio, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
+For this tutorial, we'll use [Unity](https://msdn.microsoft.com/library/ff647202.aspx) from Microsoft Patterns & Practices. (Other popular libraries include [Castle Windsor](http://www.castleproject.org/), [Spring.Net](http://www.springframework.net/), [Autofac](https://code.google.com/p/autofac/), [Ninject](http://www.ninject.org/), and [StructureMap](http://docs.structuremap.net/).) You can use NuGet Package Manager to install Unity. From the **Tools** menu in Visual Studio, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
[!code-console[Main](dependency-injection/samples/sample7.cmd)]
diff --git a/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-3.md b/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-3.md
index 14f22b55b9..cf76cce82d 100644
--- a/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-3.md
+++ b/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-3.md
@@ -17,7 +17,7 @@ by [Mike Wasson](https://github.com/MikeWasson)
In this section, you will use [Code First Migrations](https://msdn.microsoft.com/data/jj591621) in EF to seed the database with test data.
-From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-console[Main](part-3/samples/sample1.cmd)]
diff --git a/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-6.md b/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-6.md
index 202f3de5de..e1a4ebae40 100644
--- a/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-6.md
+++ b/aspnet/web-api/overview/data/using-web-api-with-entity-framework/part-6.md
@@ -35,7 +35,7 @@ This approach makes it easy to change the layout and UI of your app, because you
## Add the Knockout Library
-In Visual Studio, from the **Tools** menu, select **Library Package Manager**. Then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**. Then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-console[Main](part-6/samples/sample1.cmd)]
diff --git a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs.md b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs.md
index 37d4f0b958..1f3dc72f96 100644
--- a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs.md
+++ b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs.md
@@ -302,7 +302,7 @@ You will start by installing AngularJS from Visual Studio's Package Manager Cons
1. Open **Visual Studio Express 2013 for Web** and open the **GeekQuiz.sln** solution located in the **Source/Ex2-CreatingASPAInterface/Begin** folder. Alternatively, you can continue with the solution that you obtained in the previous exercise.
-2. Open the **Package Manager Console** from **Tools** | **Library Package Manager**. Type the following command to install the **AngularJS.Core** NuGet package.
+2. Open the **Package Manager Console** from **Tools** > **NuGet Package Manager**. Type the following command to install the **AngularJS.Core** NuGet package.
[!code-powershell[Main](build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs/samples/sample16.ps1)]
3. In **Solution Explorer**, right-click the **Scripts** folder of the **GeekQuiz** project and select **Add | New Folder**. Name the folder **app** and press **Enter**.
diff --git a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/creating-api-help-pages.md b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/creating-api-help-pages.md
index cd1b037c20..57533d6fa0 100644
--- a/aspnet/web-api/overview/getting-started-with-aspnet-web-api/creating-api-help-pages.md
+++ b/aspnet/web-api/overview/getting-started-with-aspnet-web-api/creating-api-help-pages.md
@@ -49,7 +49,7 @@ Each API has a link to a page with more detailed information, including example
You can add help pages to an existing Web API project by using NuGet Package Manager. This option is useful you start from a different project template than the "Web API" template.
-From the **Tools** menu, select **Library Package Manager**, and then select **Package Manager Console**. In the [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console) window, type one of the following commands:
+From the **Tools** menu, select **NuGet Package Manager**, and then select **Package Manager Console**. In the [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console) window, type one of the following commands:
For a **C#** application: `Install-Package Microsoft.AspNet.WebApi.HelpPage`
diff --git a/aspnet/web-api/overview/hosting-aspnet-web-api/host-aspnet-web-api-in-an-azure-worker-role.md b/aspnet/web-api/overview/hosting-aspnet-web-api/host-aspnet-web-api-in-an-azure-worker-role.md
index d7d75b2f08..02c1f38bd8 100644
--- a/aspnet/web-api/overview/hosting-aspnet-web-api/host-aspnet-web-api-in-an-azure-worker-role.md
+++ b/aspnet/web-api/overview/hosting-aspnet-web-api/host-aspnet-web-api-in-an-azure-worker-role.md
@@ -50,7 +50,7 @@ In general, an Azure application can contain multiple roles, although this tutor
## Add the Web API and OWIN Packages
-From the **Tools** menu, click **Library Package Manager**, then click **Package Manager Console**.
+From the **Tools** menu, click **NuGet Package Manager**, then click **Package Manager Console**.
In the Package Manager Console window, enter the following command:
diff --git a/aspnet/web-api/overview/hosting-aspnet-web-api/use-owin-to-self-host-web-api.md b/aspnet/web-api/overview/hosting-aspnet-web-api/use-owin-to-self-host-web-api.md
index 065b8b1d78..71578629f3 100644
--- a/aspnet/web-api/overview/hosting-aspnet-web-api/use-owin-to-self-host-web-api.md
+++ b/aspnet/web-api/overview/hosting-aspnet-web-api/use-owin-to-self-host-web-api.md
@@ -36,7 +36,7 @@ On the **File** menu, click **New**, then click **Project**. From **Installed Te
## Add the Web API and OWIN Packages
-From the **Tools** menu, click **Library Package Manager**, then click **Package Manager Console**. In the Package Manager Console window, enter the following command:
+From the **Tools** menu, click **NuGet Package Manager**, then click **Package Manager Console**. In the Package Manager Console window, enter the following command:
`Install-Package Microsoft.AspNet.WebApi.OwinSelfHost`
diff --git a/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v3/creating-an-odata-endpoint.md b/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v3/creating-an-odata-endpoint.md
index 1f4720a41f..c2e5ea5166 100644
--- a/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v3/creating-an-odata-endpoint.md
+++ b/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v3/creating-an-odata-endpoint.md
@@ -148,7 +148,7 @@ The first parameter is a friendly name for the route. Clients of your service do
In this step, you will use Entity Framework to seed the database with some test data. This step is optional, but it lets you test out your OData endpoint right away.
-From the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
+From the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, enter the following command:
[!code-console[Main](creating-an-odata-endpoint/samples/sample5.cmd)]
diff --git a/aspnet/web-api/overview/older-versions/self-host-a-web-api.md b/aspnet/web-api/overview/older-versions/self-host-a-web-api.md
index 26e1f5d4e3..725fda03c9 100644
--- a/aspnet/web-api/overview/older-versions/self-host-a-web-api.md
+++ b/aspnet/web-api/overview/older-versions/self-host-a-web-api.md
@@ -44,7 +44,7 @@ In Solution Explorer, right-click the project and select **Properties**. In the
The NuGet Package Manager is the easiest way to add the Web API assemblies to a non-ASP.NET project.
-To check if NuGet Package Manager is installed, click the **Tools** menu in Visual Studio. If you see a menu item called **Library Package Manager**, then you have NuGet Package Manager.
+To check if NuGet Package Manager is installed, click the **Tools** menu in Visual Studio. If you see a menu item called **NuGet Package Manager**, then you have NuGet Package Manager.
To install NuGet Package Manager:
@@ -62,8 +62,8 @@ To install NuGet Package Manager:
After NuGet Package Manager is installed, add the Web API Self-Host package to your project.
-1. From the **Tools** menu, select **Library Package Manager**. *Note*: If do you not see this menu item, make sure that NuGet Package Manager installed correctly.
-2. Select **Manage NuGet Packages for Solution...**
+1. From the **Tools** menu, select **NuGet Package Manager**. *Note*: If do you not see this menu item, make sure that NuGet Package Manager installed correctly.
+2. Select **Manage NuGet Packages for Solution**
3. In the **Manage NugGet Packages** dialog, select **Online**.
4. In the search box, type "Microsoft.AspNet.WebApi.SelfHost".
5. Select the ASP.NET Web API Self Host package and click **Install**.
@@ -72,7 +72,6 @@ After NuGet Package Manager is installed, add the Web API Self-Host package to y
> [!NOTE]
> Make sure to install the package named Microsoft.AspNet.WebApi.SelfHost, not AspNetWebApi.SelfHost.
-
![](self-host-a-web-api/_static/image4.png)
## Create the Model and Controller
@@ -135,8 +134,8 @@ Add a new console application project to the solution:
Use NuGet Package Manager to add the ASP.NET Web API Core Libraries package:
-- From the Tools menu, select **Library Package Manager**.
-- Select **Manage NuGet Packages for Solution...**
+- From the Tools menu, select **NuGet Package Manager**.
+- Select **Manage NuGet Packages for Solution**
- In the **Manage NuGet Packages** dialog, select **Online**.
- In the search box, type "Microsoft.AspNet.WebApi.Client".
- Select the Microsoft ASP.NET Web API Client Libraries package and click **Install**.
diff --git a/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api.md b/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api.md
index 21c5c76a65..59c842d8c9 100644
--- a/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api.md
+++ b/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api.md
@@ -96,7 +96,7 @@ Clicking the "Try It" button submits an AJAX request to the WebService app, usin
## Enable CORS
-Now let's enable CORS in the WebService app. First, add the CORS NuGet package. In Visual Studio, from the **Tools** menu, select **Library Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
+Now let's enable CORS in the WebService app. First, add the CORS NuGet package. In Visual Studio, from the **Tools** menu, select **NuGet Package Manager**, then select **Package Manager Console**. In the Package Manager Console window, type the following command:
[!code-powershell[Main](enabling-cross-origin-requests-in-web-api/samples/sample3.ps1)]
diff --git a/aspnet/web-api/overview/testing-and-debugging/tracing-in-aspnet-web-api.md b/aspnet/web-api/overview/testing-and-debugging/tracing-in-aspnet-web-api.md
index 01309f2a0c..b09bad74ba 100644
--- a/aspnet/web-api/overview/testing-and-debugging/tracing-in-aspnet-web-api.md
+++ b/aspnet/web-api/overview/testing-and-debugging/tracing-in-aspnet-web-api.md
@@ -31,7 +31,7 @@ Choose the Web API project template.
[![](tracing-in-aspnet-web-api/_static/image4.png)](tracing-in-aspnet-web-api/_static/image3.png)
-From the **Tools** menu, select **Library Package Manager**, then **Package Manage Console**.
+From the **Tools** menu, select **NuGet Package Manager**, then **Package Manage Console**.
In the Package Manager Console window, type the following commands.
@@ -42,7 +42,6 @@ The first command installs the latest Web API tracing package. It also updates t
> [!NOTE]
> If you want to target a specific version of Web API, use the -Version flag when you install the tracing package.
-
Open the file WebApiConfig.cs in the App\_Start folder. Add the following code to the **Register** method.
[!code-csharp[Main](tracing-in-aspnet-web-api/samples/sample2.cs?highlight=6)]
diff --git a/aspnet/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2.md b/aspnet/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2.md
index 3600860f1a..6512df20e2 100644
--- a/aspnet/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2.md
+++ b/aspnet/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2.md
@@ -23,7 +23,7 @@ This topic shows how to enable attribute routing and describes the various optio
[Visual Studio 2017](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=button+cta&utm_content=download+vs2017) Community, Professional, or Enterprise edition
-Alternatively, use NuGet Package Manager to install the necessary packages. From the **Tools** menu in Visual Studio, select **Library Package Manager**, then select **Package Manager Console**. Enter the following command in the Package Manager Console window:
+Alternatively, use NuGet Package Manager to install the necessary packages. From the **Tools** menu in Visual Studio, select **NuGet Package Manager**, then select **Package Manager Console**. Enter the following command in the Package Manager Console window:
`Install-Package Microsoft.AspNet.WebApi.WebHost`
diff --git a/aspnet/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute-routing.md b/aspnet/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute-routing.md
index 9ef41d78bf..a67ce1af3b 100644
--- a/aspnet/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute-routing.md
+++ b/aspnet/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute-routing.md
@@ -98,7 +98,7 @@ Click **Add** in the **Add Controller** dialog. The scaffolding adds a class nam
### Seed the Database
-From the Tools menu, select **Library Package Manager**, and then select **Package Manager Console**.
+From the Tools menu, select **NuGet Package Manager**, and then select **Package Manager Console**.
In the Package Manager Console window, enter the following command:
diff --git a/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/preparing-databases.md b/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/preparing-databases.md
index f436dbe14c..3f24de462f 100644
--- a/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/preparing-databases.md
+++ b/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/preparing-databases.md
@@ -78,15 +78,13 @@ Open the application *Web.config* file and remove or comment out the `add` eleme
> [!NOTE]
> Another way to specify an initializer class is do it by calling `Database.SetInitializer` in the `Application_Start` method in the *Global.asax* file. If you are enabling Migrations in a project that uses that method to specify the initializer, remove that line of code.
-
> [!NOTE]
> If you are using Visual Studio 2013, add the following steps between steps 2 and 3: (a) In PMC enter "update-package entityframework -version 6.1.1" to get the current version of EF. Then (b) build the project to get a list of build errors, and fix them. Delete using statements for namespaces that no longer exist, right-click and click Resolve to add using statements where they're needed, and change occurrences of System.Data.EntityState to System.Data.Entity.EntityState.
-
### Enable Code First Migrations
1. Make sure that the ContosoUniversity project (not ContosoUniversity.DAL) is set as the startup project. In **Solution Explorer**, right-click the ContosoUniversity project and select **Set as Startup Project**. Code First Migrations will look in the startup project to find the database connection string.
-2. From the **Tools** menu, click **Library Package Manager** (or **NuGet Package Manager**) and then **Package Manager Console**.
+2. From the **Tools** menu, choose **NuGet Package Manager** > **Package Manager Console**.
![Selecting_Package_Manager_Console](preparing-databases/_static/image3.png)
3. At the top of the **Package Manager Console** window select ContosoUniversity.DAL as the default project and then at the `PM>` prompt enter "enable-migrations".
diff --git a/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/aspnet-error-handling.md b/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/aspnet-error-handling.md
index c3c1c1ed9c..8238bb16f0 100644
--- a/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/aspnet-error-handling.md
+++ b/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/aspnet-error-handling.md
@@ -269,7 +269,7 @@ ELMAH (Error Logging Modules and Handlers) is an error logging facility that you
Before you can work with the ELMAH, you must install it. This is easy using the *NuGet* package installer. As mentioned earlier in this tutorial series, NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio.
-1. Within Visual Studio, from the **Tools** menu, select **Library Package Manager** -> **Manage NuGet Packages for Solution**.
+1. Within Visual Studio, from the **Tools** menu, select **NuGet Package Manager** > **Manage NuGet Packages for Solution**.
![ASP.NET Error Handling - Manage NuGet Packages for Solution](aspnet-error-handling/_static/image6.png)
2. The **Manage NuGet Packages** dialog box is displayed within Visual Studio.
@@ -280,7 +280,7 @@ Before you can work with the ELMAH, you must install it. This is easy using the
5. In the **Select Projects** dialog box, make sure the **WingtipToys** selection is selected, and then click **OK**.
![ASP.NET Error Handling - Select Projects Dialog](aspnet-error-handling/_static/image8.png)
-6. Click **Close** in **the Manage NuGet Packages** dialog box if needed.
+6. Click **Close** in the **Manage NuGet Packages** dialog box if needed.
7. If Visual Studio requests that you reload any open files, select "**Yes to All**".
8. The ELMAH package adds entries for itself in the *Web.config* file at the root of your project. If Visual Studio asks you if you want to reload the modified *Web.config* file, click **Yes**.
diff --git a/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create-the-project.md b/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create-the-project.md
index 7903834ae3..40299620b3 100644
--- a/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create-the-project.md
+++ b/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create-the-project.md
@@ -168,8 +168,7 @@ When a Web server receives a request for a page, it finds the page, processes it
>
> Besides the features in the ASP.NET Web Forms Application template, the Wingtip Toys application uses [Entity Framework Code First](https://weblogs.asp.net/scottgu/archive/2010/12/08/announcing-entity-framework-code-first-ctp5-release.aspx), which is a NuGet library that enables code-centric development when you work with data. Put simply, it creates the database portion of your application for you based on the code that you write. Using the Entity Framework, you retrieve and manipulate data as strongly typed objects. This lets you focus on the business logic in your application rather than the details of how data is accessed.
>
-> For additional information about the installed libraries and packages included with the ASP.NET Web Forms template, see the list of installed NuGet packages. To do this, In Visual Studio create a new Web Forms project, select **Tools** -> **Library Package Manager** -> **Manage NuGet Packages for Solution**, and select **Installed packages** in the **Manage NuGet Packages** dialog box.
-
+> For additional information about the installed libraries and packages included with the ASP.NET Web Forms template, see the list of installed NuGet packages. To do this, In Visual Studio create a new Web Forms project, select **Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**, and select **Installed packages** in the **Manage NuGet Packages** dialog box.
### Touring Visual Studio
diff --git a/aspnet/web-forms/overview/older-versions-getting-started/deployment-to-a-hosting-provider/deployment-to-a-hosting-provider-deploying-sql-server-compact-databases-2-of-12.md b/aspnet/web-forms/overview/older-versions-getting-started/deployment-to-a-hosting-provider/deployment-to-a-hosting-provider-deploying-sql-server-compact-databases-2-of-12.md
index e57854039c..1b5dc31a34 100644
--- a/aspnet/web-forms/overview/older-versions-getting-started/deployment-to-a-hosting-provider/deployment-to-a-hosting-provider-deploying-sql-server-compact-databases-2-of-12.md
+++ b/aspnet/web-forms/overview/older-versions-getting-started/deployment-to-a-hosting-provider/deployment-to-a-hosting-provider-deploying-sql-server-compact-databases-2-of-12.md
@@ -99,12 +99,11 @@ Open the application Web.config file and remove the element that specifies the C
> [!NOTE]
> Another way to specify an initializer class is do it by calling `Database.SetInitializer` in the `Application_Start` method in the *Global.asax* file. If you are enabling Migrations in a project that uses that method to specify the initializer, remove that line of code.
-
Next, enable Code First Migrations.
The first step is to make sure that the ContosoUniversity project is set as the startup project. In **Solution Explorer**, right-click the ContosoUniversity project and select **Set as Startup Project**. Code First Migrations will look in the startup project to find the database connection string.
-From the **Tools** menu, click **Library Package Manager** and then **Package Manager Console**.
+From the **Tools** menu, click **NuGet Package Manager** and then **Package Manager Console**.
![Selecting_Package_Manager_Console](deployment-to-a-hosting-provider-deploying-sql-server-compact-databases-2-of-12/_static/image6.png)