Skip to content

Commit f9d5d67

Browse files
authored
Remove broken sample link (#35296)
1 parent 0731548 commit f9d5d67

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

aspnetcore/blazor/host-and-deploy/webassembly/deployment-layout.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ The approach demonstrated in this article serves as a starting point for develop
4646

4747
The approach described in this article is used by the *experimental* [`Microsoft.AspNetCore.Components.WebAssembly.MultipartBundle` package (NuGet.org)](https://www.nuget.org/packages/Microsoft.AspNetCore.Components.WebAssembly.MultipartBundle) for apps targeting .NET 6 or later. The package contains MSBuild targets to customize the Blazor publish output and a [JavaScript initializer](xref:blazor/js-interop/index#javascript-initializers) to use a custom [boot resource loader](xref:blazor/fundamentals/startup#load-boot-resources), each of which are described in detail later in this article.
4848

49-
[Experimental code (includes the NuGet package reference source and `CustomPackagedApp` sample app)](https://github.com/aspnet/AspLabs/tree/main/src/BlazorWebAssemblyCustomInitialization)
50-
5149
> [!WARNING]
5250
> Experimental and preview features are provided for the purpose of collecting feedback and aren't supported for production use.
5351

aspnetcore/data/scaffold_RP.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ content_well_notification: AI-contribution
1010
ai-usage: ai-assisted
1111
uid: data/dotnet-scaffold-rp
1212
---
13-
1413
# Scaffold a data model with dotnet scaffold in a Razor Pages project
1514

1615
The CLI tool, [dotnet scaffold](https://www.nuget.org/packages/Microsoft.dotnet-scaffold) creates data access UI for many .NET project types, such as API, Aspire, Blazor, MVC, and Razor Pages. `dotnet scaffold` can be run interactively or as a command line tool via passing parameter values.
@@ -39,7 +38,7 @@ To navigate the UI, use the:
3938

4039
## Create and scaffold a data model in a Razor Pages project
4140

42-
If you have any problems with the following steps, see [Tutorial: Create a Razor Pages web app with ASP.NET Core](/aspnet/core/tutorials/razor-pages/) and select the **Visual Studio Code** tab.
41+
If you have any problems with the following steps, see <xref:tutorials/razor-pages/index?tabs=visual-studio-code>.
4342

4443
1. Run the following commands to create a Razor Pages project and navigate to the projects folder:
4544
```dotnetcli
@@ -78,7 +77,7 @@ In The preceding commands:
7877

7978
* `dotnet tool uninstall --global dotnet-ef` uninstalls the `dotnet-ef` tool. Uninstalling ensures the latest tool is successfully installed. If `dotnet-ef` isn't installed, an error messages **A tool with the package Id 'dotnet-ef' could not be found.** You can ignore this message.
8079
* `dotnet tool install --global dotnet-ef` installs globally the `dotnet-ef` tool.
81-
* `dotnet ef migrations add initialMigration` adds the initial migration. For more information, see [Create the initial database schema using EF's migration feature](/aspnet/core/tutorials/razor-pages/model&tabs=visual-studio-code)
80+
* `dotnet ef migrations add initialMigration` adds the initial migration. For more information, see <xref:tutorials/razor-pages/model?tabs=visual-studio-code>.
8281
* `dotnet ef database update` applies the migrations to the database.
8382

8483
Run the app:
@@ -94,5 +93,5 @@ Run the app:
9493

9594
* [dotnet scaffold repo on GitHub](https://github.com/dotnet/Scaffolding)
9695
* [How to manage .NET tools](/dotnet/core/tools/global-tools)
97-
* [Microsoft.dotnet-scaffold](https://www.nuget.org/packages/Microsoft.dotnet-scaffold) NuGet package.
98-
* [Detailed tutorial on EF scaffolding Razor Pages](/aspnet/core/data/scaffold_rp)
96+
* [`Microsoft.dotnet-scaffold`](https://www.nuget.org/packages/Microsoft.dotnet-scaffold) NuGet package.
97+
* <xref:data/dotnet-scaffold-rp>

0 commit comments

Comments
 (0)