Skip to content

Commit 5059d6c

Browse files
committed
warnings
1 parent 30ddc2b commit 5059d6c

File tree

5 files changed

+31
-15
lines changed

5 files changed

+31
-15
lines changed

.openpublishing.redirection.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,6 +1502,26 @@
15021502
"source_path": "aspnetcore/blazor/performance.md",
15031503
"redirect_url": "/aspnet/core/blazor/performance/",
15041504
"redirect_document_id": false
1505+
},
1506+
{
1507+
"source_path": "aspnetcore/migration/claimsprincipal-current.md",
1508+
"redirect_url": "/aspnet/core/migration/fx-to-core/areas/claimsprincipal-current",
1509+
"redirect_document_id": false
1510+
},
1511+
{
1512+
"source_path": "aspnetcore/migration/webapi.md",
1513+
"redirect_url": "/aspnet/core/migration/fx-to-core/areas/webapi",
1514+
"redirect_document_id": false
1515+
},
1516+
{
1517+
"source_path": "aspnetcore/migration/configuration.md",
1518+
"redirect_url": "/aspnet/core/migration/fx-to-core/examples/configuration",
1519+
"redirect_document_id": false
1520+
},
1521+
{
1522+
"source_path": "aspnetcore/migration/identity.md",
1523+
"redirect_url": "/aspnet/core/migration/fx-to-core/examples/identity",
1524+
"redirect_document_id": false
15051525
}
15061526
]
15071527
}

aspnetcore/migration/fx-to-core/examples/overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Migrating from ASP.NET MVC is a multi-step process. This article covers:
2020
* Static content.
2121
* Client-side dependencies.
2222

23-
For migrating configuration and Identity code, see [Migrate configuration to ASP.NET Core](xref:migration/fx-to-core/areas/configuration) and [Migrate Authentication and Identity to ASP.NET Core](xref:migration/fx-to-core/areas/identity).
23+
For migrating configuration and Identity code, see [Migrate configuration to ASP.NET Core](configuration.md) and [Migrate Authentication and Identity to ASP.NET Core](identity.md).
2424

2525
## Prerequisites
2626

@@ -168,7 +168,7 @@ ASP.NET Core converts unhandled exceptions into HTTP 500 error responses. Normal
168168

169169
## Next steps
170170

171-
* <xref:migration/fx-to-core/areas/identity>
171+
* <identity.md>
172172

173173
## Additional resources
174174

@@ -186,7 +186,7 @@ This article shows how to start migrating an ASP.NET MVC project to [ASP.NET Cor
186186
* Static content
187187
* Client-side dependencies.
188188

189-
For migrating configuration and Identity code, see <xref:migration/fx-to-core/areas/configuration> and <xref:migration/fx-to-core/areas/identity>.
189+
For migrating configuration and Identity code, see <configuration.md> and <identity.md>.
190190

191191
> [!NOTE]
192192
> The version numbers in the samples might not be current, update the projects accordingly.
@@ -313,7 +313,7 @@ Open `_Layout.cshtml` file and make the following changes (the completed code is
313313

314314
* Remove `@Scripts.Render("~/bundles/modernizr")`.
315315

316-
* Comment out the `@Html.Partial("_LoginPartial")` line (surround the line with `@*...*@`). For more information, see [Migrate Authentication and Identity to ASP.NET Core](xref:migration/fx-to-core/areas/identity)
316+
* Comment out the `@Html.Partial("_LoginPartial")` line (surround the line with `@*...*@`). For more information, see [Migrate Authentication and Identity to ASP.NET Core](identity.md)
317317

318318
* Replace `@Scripts.Render("~/bundles/jquery")` with a `<script>` element (see below).
319319

@@ -372,7 +372,7 @@ This article shows how to start migrating an ASP.NET MVC project to [ASP.NET Cor
372372
* Static content
373373
* Client-side dependencies.
374374

375-
For migrating configuration and Identity code, see [Migrate configuration to ASP.NET Core](xref:migration/fx-to-core/areas/configuration) and [Migrate Authentication and Identity to ASP.NET Core](xref:migration/fx-to-core/areas/identity).
375+
For migrating configuration and Identity code, see [Migrate configuration to ASP.NET Core](configuration.md) and [Migrate Authentication and Identity to ASP.NET Core](identity.md).
376376

377377
> [!NOTE]
378378
> The version numbers in the samples might not be current, update the projects accordingly.
@@ -499,7 +499,7 @@ Open `_Layout.cshtml` file and make the following changes (the completed code is
499499

500500
* Remove `@Scripts.Render("~/bundles/modernizr")`.
501501

502-
* Comment out the `@Html.Partial("_LoginPartial")` line (surround the line with `@*...*@`). For more information, see [Migrate Authentication and Identity to ASP.NET Core](xref:migration/fx-to-core/areas/identity)
502+
* Comment out the `@Html.Partial("_LoginPartial")` line (surround the line with `@*...*@`). For more information, see [Migrate Authentication and Identity to ASP.NET Core](identity.md)
503503

504504
* Replace `@Scripts.Render("~/bundles/jquery")` with a `<script>` element (see below).
505505

aspnetcore/security/authentication/identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
292292

293293
## Migrating to ASP.NET Core Identity
294294

295-
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/areas/identity).
295+
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/examples/identity).
296296

297297
## Setting password strength
298298

aspnetcore/security/authentication/identity/includes/identity6.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
196196

197197
## Migrating to ASP.NET Core Identity
198198

199-
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/areas/identity).
199+
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/examples/identity).
200200

201201
## Setting password strength
202202

@@ -240,7 +240,7 @@ To prevent publishing static Identity assets (stylesheets and JavaScript files f
240240
* <xref:security/authorization/secure-data>
241241
* <xref:security/authentication/add-user-data>
242242
* <xref:security/authentication/identity-enable-qrcodes>
243-
* <xref:migration/fx-to-core/areas/identity>
243+
* <xref:migration/fx-to-core/examples/identity>
244244
* <xref:security/authentication/accconfirm>
245245
* <xref:security/authentication/2fa>
246246
* <xref:host-and-deploy/web-farm>
@@ -464,7 +464,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
464464

465465
## Migrating to ASP.NET Core Identity
466466

467-
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/areas/identity).
467+
For more information and guidance on migrating your existing Identity store, see [Migrate Authentication and Identity](xref:migration/fx-to-core/examples/identity).
468468

469469
## Setting password strength
470470

@@ -497,7 +497,7 @@ To prevent publishing static Identity assets (stylesheets and JavaScript files f
497497
* <xref:security/authorization/secure-data>
498498
* <xref:security/authentication/add-user-data>
499499
* <xref:security/authentication/identity-enable-qrcodes>
500-
* <xref:migration/fx-to-core/areas/identity>
500+
* <xref:migration/fx-to-core/examples/identity>
501501
* <xref:security/authentication/accconfirm>
502502
* <xref:security/authentication/2fa>
503503
* <xref:host-and-deploy/web-farm>

aspnetcore/toc.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,10 +2149,6 @@ items:
21492149
uid: migration/fx-to-core/areas/membership
21502150
- name: Web API
21512151
uid: migration/fx-to-core/areas/webapi
2152-
- name: Configuration
2153-
uid: migration/fx-to-core/areas/configuration
2154-
- name: Identity
2155-
uid: migration/fx-to-core/areas/identity
21562152
- name: ClaimsPrincipal.Current
21572153
uid: migration/fx-to-core/areas/claimsprincipal-current
21582154
- name: API reference

0 commit comments

Comments
 (0)