We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe3a210 commit fb9ed92Copy full SHA for fb9ed92
1 file changed
aspnetcore/migration/fx-to-core/inc/remote-app-setup.md
@@ -170,6 +170,11 @@ To enable proxying from the ASP.NET Core application to the ASP.NET Framework ap
170
171
1. Add Aspire orchestration for the ASP.NET Framework application
172
1. Add a new ASP.NET Core application to the solution and add it to your Aspire orchestration
173
+1. Update the AppHost to target Windows as IIS integration requires that:
174
+ ```diff
175
+ - <TargetFramework>net9.0</TargetFramework>
176
+ + <TargetFramework>net9.0-windows</TargetFramework>
177
+ ```
178
1. Add the following Aspire integrations to your app host:
179
* `Aspire.Hosting.IncrementalMigration`
180
* `C3D.Extensions.Aspire.IISExpress`
0 commit comments