Skip to content

Commit a5cd8d4

Browse files
committed
fix suggestions
1 parent ea9300f commit a5cd8d4

File tree

7 files changed

+71
-6
lines changed

7 files changed

+71
-6
lines changed

.openpublishing.redirection.json

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,72 @@
989989
"source_path": "aspnetcore/migration/proper-to-2x/mvc2.md",
990990
"redirect_url": "migration/mvc/",
991991
"redirect_document_id": false
992-
},
992+
},
993+
{
994+
"source_path": "aspnetcore/migration/inc/abtesting.md",
995+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/ab-testing",
996+
"redirect_document_id": false
997+
},
998+
{
999+
"source_path": "aspnetcore/migration/inc/adapters.md",
1000+
"redirect_url": "/aspnet/core/migration/fx-to-core/systemweb-adapters",
1001+
"redirect_document_id": false
1002+
},
1003+
{
1004+
"source_path": "aspnetcore/migration/inc/blazor.md",
1005+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/blazor",
1006+
"redirect_document_id": false
1007+
},
1008+
{
1009+
"source_path": "aspnetcore/migration/inc/http-modules.md",
1010+
"redirect_url": "/aspnet/core/migration/fx-to-core/areas/http-modules",
1011+
"redirect_document_id": false
1012+
},
1013+
{
1014+
"source_path": "aspnetcore/migration/inc/overview.md",
1015+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/overview",
1016+
"redirect_document_id": false
1017+
},
1018+
{
1019+
"source_path": "aspnetcore/migration/inc/remote-app-setup.md",
1020+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/remote-app-setup",
1021+
"redirect_document_id": false
1022+
},
1023+
{
1024+
"source_path": "aspnetcore/migration/inc/remote-authentication.md",
1025+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/remote-authentication",
1026+
"redirect_document_id": false
1027+
},
1028+
{
1029+
"source_path": "aspnetcore/migration/inc/remote-session.md",
1030+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/remote-session",
1031+
"redirect_document_id": false
1032+
},
1033+
{
1034+
"source_path": "aspnetcore/migration/inc/session.md",
1035+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/session",
1036+
"redirect_document_id": false
1037+
},
1038+
{
1039+
"source_path": "aspnetcore/migration/inc/start.md",
1040+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/start",
1041+
"redirect_document_id": false
1042+
},
1043+
{
1044+
"source_path": "aspnetcore/migration/inc/unit-testing.md",
1045+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/unit-testing",
1046+
"redirect_document_id": false
1047+
},
1048+
{
1049+
"source_path": "aspnetcore/migration/inc/usage_guidance.md",
1050+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/usage_guidance",
1051+
"redirect_document_id": false
1052+
},
1053+
{
1054+
"source_path": "aspnetcore/migration/inc/wrapped.md",
1055+
"redirect_url": "/aspnet/core/migration/fx-to-core/inc/wrapped",
1056+
"redirect_document_id": false
1057+
},
9931058
{
9941059
"source_path": "aspnetcore/security/blazor/server-side.md",
9951060
"redirect_url": "/aspnet/core/blazor/security/server/",
File renamed without changes.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The `Microsoft.AspNetCore.SystemWebAdapters` namespace is a collection of runtim
6868
* `Microsoft.AspNetCore.SystemWebAdapters.CoreServices`: This package only targets .NET 6+ and is intended to provide services to ASP.NET Core applications to configure behavior of `System.Web` APIs as well as opting into any behaviors for incremental migration. This is generally not expected to be referenced from libraries, but rather from the applications themselves.
6969
* `Microsoft.AspNetCore.SystemWebAdapters.Abstractions`: This package is a supporting package that provides abstractions for services used by both the ASP.NET Core and ASP.NET Framework application such as session state serialization.
7070

71-
For examples of scenarios where this is useful, see [the adapters article](xref:migration/fx-to-core/inc/adapters).
71+
For examples of scenarios where this is useful, see [the adapters article](xref:migration/fx-to-core/systemweb-adapters).
7272

7373
For guidance around usage, see the [usage guidance article](xref:migration/fx-to-core/inc/usage_guidance).
7474

aspnetcore/migration/fx-to-core/inc/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For ASP.NET Framework Web Forms apps, see <xref:migration/web_forms>.
2626

2727
If you have supporting libraries in your solution that you will need to use, they should be upgraded to .NET Standard 2.0, if possible. [Upgrade Assistant](https://github.com/dotnet/upgrade-assistant) is a great tool for this. If libraries are unable to target .NET Standard, you can target .NET 6 or later either along with the .NET Framework target in the original project or in a new project alongside the original.
2828

29-
The [adapters](xref:migration/fx-to-core/inc/adapters) can be used in these libraries to enable support for `System.Web.HttpContext` usage in class libraries. In order to enable `System.Web.HttpContext` usage in a library:
29+
The [adapters](xref:migration/fx-to-core/systemweb-adapters) can be used in these libraries to enable support for `System.Web.HttpContext` usage in class libraries. In order to enable `System.Web.HttpContext` usage in a library:
3030

3131
1. Remove reference to `System.Web` in the project file
3232
1. Add the `Microsoft.AspNetCore.SystemWebAdapters` package

aspnetcore/migration/mvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This article shows how to upgrade an ASP.NET Framework MVC or Web API app to ASP
1414

1515
## Upgrade using the .NET Upgrade Assistant
1616

17-
If your .NET Framework project has supporting libraries in the solution that are required, they should be upgraded to .NET Standard 2.0, if possible. For more information, see [Upgrade supporting libraries](/aspnet/core/migration/fx-to-core/inc/start#upgrade-supporting-libraries).
17+
If your .NET Framework project has supporting libraries in the solution that are required, they should be upgraded to .NET Standard 2.0, if possible. For more information, see [Upgrade supporting libraries](xref:migration/fx-to-core/inc/start#upgrade-supporting-libraries).
1818

1919
1. Install the [.NET Upgrade Assistant](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.upgradeassistant) Visual Studio extension.
2020
1. Open the ASP.NET MVC or Web API solution in Visual Studio.

aspnetcore/migration/web_forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ uid: migration/web_forms
1212

1313
This article shows how to upgrade an ASP.NET Framework Web Forms to ASP.NET Core using the Visual Studio [.NET Upgrade Assistant](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.upgradeassistant) and the [incremental update](xref:migration/fx-to-core/inc/overview) approach.
1414

15-
If your .NET Framework project has supporting libraries in its solution that are required, they should be upgraded to .NET Standard 2.0, if possible. For more information, see [Upgrade supporting libraries](/aspnet/core/migration/fx-to-core/inc/start#upgrade-supporting-libraries).
15+
If your .NET Framework project has supporting libraries in its solution that are required, they should be upgraded to .NET Standard 2.0, if possible. For more information, see [Upgrade supporting libraries](xref:migration/fx-to-core/inc/start#upgrade-supporting-libraries).
1616

1717
1. Install the [.NET Upgrade Assistant](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.upgradeassistant) Visual Studio extension.
1818
1. Open the ASP.NET Web Forms solution in Visual Studio.

aspnetcore/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2106,7 +2106,7 @@ items:
21062106
- name: Get started
21072107
uid: migration/fx-to-core/inc/start
21082108
- name: System.Web adapters
2109-
uid: migration/fx-to-core/inc/adapters
2109+
uid: migration/fx-to-core/systemweb-adapters
21102110
- name: Remote app setup
21112111
uid: migration/fx-to-core/inc/remote-app-setup
21122112
- name: Usage Guidance

0 commit comments

Comments
 (0)