Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions aspnetcore/blazor/tutorials/movie-database-app/part-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,36 +59,18 @@ In Visual Studio:

* Confirm that the **Location** for the app is suitable. Set the **Place solution and project in the same directory** checkbox to match your preferred solution file location. Select the **Next** button.

:::moniker range=">= aspnetcore-9.0"

* In the **Additional information** dialog, use the following settings:

* **Framework**: Select **.NET 9.0 (Standard Term Support)**.
* **Authentication type**: **None**
* **Configure for HTTPS**: Selected
* **Interactive render mode**: **Server**
* **Interactivity location**: **Per page/component**
* **Include sample pages**: Selected
* **Do not use top-level statements**: Not selected
* Select **Create**.

:::moniker-end

:::moniker range="< aspnetcore-9.0"

* In the **Additional information** dialog, use the following settings:

* **Framework**: Select **.NET 8.0 (Long Term Support)**.
* **Framework**: Confirm that the [latest framework](https://dotnet.microsoft.com/download/dotnet) is selected. If Visual Studio's **Framework** dropdown list doesn't include the latest available .NET framework, [update Visual Studio](/visualstudio/install/update-visual-studio) and restart the tutorial.
* **Authentication type**: **None**
* **Configure for HTTPS**: Selected
* **Interactive render mode**: **Server**
* **Interactivity location**: **Per page/component**
* **Include sample pages**: Selected
* **Do not use top-level statements**: Not selected
* **Use the .dev.localhost TLD in the application URL**: Not selected
* Select **Create**.

:::moniker-end

The Visual Studio instructions in parts of this tutorial series use EF Core commands to add database migrations and update the database. EF Core commands are issued using [Visual Studio Connected Services](/visualstudio/azure/overview-connected-services). More information is provided later in this tutorial series.

:::zone-end
Expand Down
10 changes: 6 additions & 4 deletions aspnetcore/blazor/tutorials/signalr-blazor.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ In Visual Studio:
* **Interactivity location**: **Per page/component**
* **Include sample pages**: Selected
* **Do not use top-level statements**: Not selected
* **Use the .dev.localhost TLD in the application URL**: Not selected
* Select **Create**.

# [Visual Studio Code](#tab/visual-studio-code)
Expand All @@ -116,13 +117,14 @@ In VS Code:

After the preceding changes are made, the **Command Palette** shows the following:

* **Framework**: Set to the latest public non-preview release of .NET.
* **Framework**: Confirm that the [latest framework](https://dotnet.microsoft.com/download/dotnet) is selected. If Visual Studio's **Framework** dropdown list doesn't include the latest available .NET framework, [update Visual Studio](/visualstudio/install/update-visual-studio) and restart the tutorial.
* **Authentication type**: **None**
* **Configure for HTTPS**: **true**
* **Configure for HTTPS**: Selected
* **Interactive render mode**: **WebAssembly**
* **Interactivity location**: **Per page/component**
* **Include sample pages**: **true**
* **Do not use top-level statements**: **false**
* **Include sample pages**: Selected
* **Do not use top-level statements**: Not selected
* **Use the .dev.localhost TLD in the application URL**: Not selected

* Select **Create project** from the **Command Palette**.

Expand Down