Skip to content
Open
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
4 changes: 2 additions & 2 deletions aspnetcore/migration/fx-to-core/inc/remote-app-setup.md
Original file line number Diff line number Diff line change
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