Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions aspnetcore/migration/fx-to-core/inc/remote-app-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: wadepickett
description: Remote app setup
monikerRange: '>= aspnetcore-6.0'
ms.author: wpickett
ms.date: 12/10/2025
ms.date: 01/26/2026
ms.topic: concept-article
uid: migration/fx-to-core/inc/remote-app-setup
zone_pivot_groups: migration-remote-app-setup
Expand Down Expand Up @@ -64,7 +64,7 @@ To configure the application to be available to handle the requests from the ASP
{
HttpApplicationHost.RegisterHost(builder =>
{
builder.AddSystemWebAdapters()
builder.Services.AddSystemWebAdapters()
.AddRemoteAppServer(options =>
{
// ApiKey is a string representing a GUID
Expand Down Expand Up @@ -266,7 +266,7 @@ To enable proxying from the ASP.NET Core application to the ASP.NET Framework ap
HttpApplicationHost.RegisterHost(builder =>
{
builder.AddServiceDefaults();
builder.AddSystemWebAdapters();
builder.Services.AddSystemWebAdapters();
});
}
```
Expand Down