Skip to content

Commit

Permalink
First MVC: Clarify project location has no restriction (#32580)
Browse files Browse the repository at this point in the history
* First MVC: Clarify project location

* Improved per review feedback
  • Loading branch information
wadepickett committed May 15, 2024
1 parent c0cd2eb commit 2d89d8a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions aspnetcore/tutorials/first-mvc-app/start-mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: wadepickett
description: Learn how to get started with ASP.NET Core MVC.
monikerRange: '>= aspnetcore-3.1'
ms.author: wpickett
ms.date: 03/13/2024
ms.date: 05/14/2024
uid: tutorials/first-mvc-app/start-mvc
ms.custom: engagement-fy23
---
Expand Down Expand Up @@ -57,7 +57,9 @@ See https://github.com/dotnet/AspNetCore.Docs/issues/21193

* Start Visual Studio and select **Create a new project**.
* In the **Create a new project** dialog, select **ASP.NET Core Web App (Model-View-Controller)** > **Next**.
* In the **Configure your new project** dialog, enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* In the **Configure your new project** dialog:
* Enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* The **Location** for the project can be set to anywhere.
* Select **Next**.
* In the **Additional information** dialog:
* Select **.NET 8.0 (Long Term Support)**.
Expand All @@ -78,7 +80,7 @@ Visual Studio uses the default project template for the created MVC project. The
The tutorial assumes familiarity with VS Code. For more information, see [Getting started with VS Code](https://code.visualstudio.com/docs) and [Visual Studio Code help](#visual-studio-code-help).

* Select **New Terminal** from the **Terminal** menu to open the [integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal).
* Change to the directory (`cd`) that will contain the project.
* Change to the directory (`cd`) that will contain the project. The project can be located anywhere.
* Run the following commands:

```dotnetcli
Expand All @@ -101,6 +103,7 @@ The tutorial assumes familiarity with VS Code. For more information, see [Gettin
* Verify that **Do not use top-level statements** is unchecked.
* Select **Continue**.
* Enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* The **Location** for the project can be set to anywhere.
* Select **Create**.

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ See https://github.com/dotnet/AspNetCore.Docs/issues/21193

* Start Visual Studio and select **Create a new project**.
* In the **Create a new project** dialog, select **ASP.NET Core Web App (Model-View-Controller)** > **Next**.
* In the **Configure your new project** dialog, enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* In the **Configure your new project** dialog:
* Enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* The **Location** for the project can be set to anywhere.
* Select **Next**.
* In the **Additional information** dialog:
* Select **.NET 7.0**.
Expand All @@ -62,7 +64,7 @@ Visual Studio uses the default project template for the created MVC project. The
The tutorial assumes familiarity with VS Code. For more information, see [Getting started with VS Code](https://code.visualstudio.com/docs).

* Select **New Terminal** from the **Terminal** menu to open the [integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal).
* Change to the directory (`cd`) that will contain the project.
* Change to the directory (`cd`) that will contain the project. The project can be located anywhere.
* Run the following commands:

```dotnetcli
Expand All @@ -85,6 +87,7 @@ The tutorial assumes familiarity with VS Code. For more information, see [Gettin
* Verify that **Do not use top-level statements** is unchecked.
* Select **Continue**.
* Enter `MvcMovie` for **Project name**. It's important to name the project *MvcMovie*. Capitalization needs to match each `namespace` when code is copied.
* The **Location** for the project can be set to anywhere.
* Select **Create**.

---
Expand Down

0 comments on commit 2d89d8a

Please sign in to comment.