File tree Expand file tree Collapse file tree
aspnetcore/migration/fx-to-core/inc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ author: wadepickett
55description : Remote app setup
66monikerRange : ' >= aspnetcore-6.0'
77ms.author : wpickett
8- ms.date : 12/10/2025
8+ ms.date : 01/26/2026
99ms.topic : concept-article
1010uid : migration/fx-to-core/inc/remote-app-setup
1111zone_pivot_groups : migration-remote-app-setup
@@ -64,7 +64,7 @@ To configure the application to be available to handle the requests from the ASP
6464 {
6565 HttpApplicationHost .RegisterHost (builder =>
6666 {
67- builder .AddSystemWebAdapters ()
67+ builder .Services . AddSystemWebAdapters ()
6868 .AddRemoteAppServer (options =>
6969 {
7070 // ApiKey is a string representing a GUID
@@ -266,7 +266,7 @@ To enable proxying from the ASP.NET Core application to the ASP.NET Framework ap
266266 HttpApplicationHost .RegisterHost (builder =>
267267 {
268268 builder .AddServiceDefaults ();
269- builder .AddSystemWebAdapters ();
269+ builder .Services . AddSystemWebAdapters ();
270270 });
271271 }
272272 ```
You can’t perform that action at this time.
0 commit comments