You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/migration/fx-to-core/examples/overview.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Migrating from ASP.NET MVC is a multi-step process. This article covers:
20
20
* Static content.
21
21
* Client-side dependencies.
22
22
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).
24
24
25
25
## Prerequisites
26
26
@@ -168,7 +168,7 @@ ASP.NET Core converts unhandled exceptions into HTTP 500 error responses. Normal
168
168
169
169
## Next steps
170
170
171
-
*<xref:migration/fx-to-core/areas/identity>
171
+
* <identity.md>
172
172
173
173
## Additional resources
174
174
@@ -186,7 +186,7 @@ This article shows how to start migrating an ASP.NET MVC project to [ASP.NET Cor
186
186
* Static content
187
187
* Client-side dependencies.
188
188
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>.
190
190
191
191
> [!NOTE]
192
192
> 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
* 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)
317
317
318
318
* Replace `@Scripts.Render("~/bundles/jquery")` with a `<script>` element (see below).
319
319
@@ -372,7 +372,7 @@ This article shows how to start migrating an ASP.NET MVC project to [ASP.NET Cor
372
372
* Static content
373
373
* Client-side dependencies.
374
374
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).
376
376
377
377
> [!NOTE]
378
378
> 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
* 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)
503
503
504
504
* Replace `@Scripts.Render("~/bundles/jquery")` with a `<script>` element (see below).
Copy file name to clipboardExpand all lines: aspnetcore/security/authentication/identity.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -292,7 +292,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
292
292
293
293
## Migrating to ASP.NET Core Identity
294
294
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).
Copy file name to clipboardExpand all lines: aspnetcore/security/authentication/identity/includes/identity6.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -196,7 +196,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
196
196
197
197
## Migrating to ASP.NET Core Identity
198
198
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).
200
200
201
201
## Setting password strength
202
202
@@ -240,7 +240,7 @@ To prevent publishing static Identity assets (stylesheets and JavaScript files f
@@ -464,7 +464,7 @@ The primary package for Identity is [Microsoft.AspNetCore.Identity](https://www.
464
464
465
465
## Migrating to ASP.NET Core Identity
466
466
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).
468
468
469
469
## Setting password strength
470
470
@@ -497,7 +497,7 @@ To prevent publishing static Identity assets (stylesheets and JavaScript files f
0 commit comments