Skip to content

Commit

Permalink
Add note on In-Process hosting (ThreeMammals#816)
Browse files Browse the repository at this point in the history
When using ASP.NET Core 2.2 with In-Process hosting in IIS it's important to use .UseIIS() instead of .UseIISIntegration().
  • Loading branch information
jmezach authored and thiagoloureiro committed Mar 19, 2019
1 parent 9de46d0 commit 46c1fe2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/introduction/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ AddOcelot() (adds ocelot services), UseOcelot().Wait() (sets up all the Ocelot m
.Run();
}
}
**Note:** When using ASP.NET Core 2.2 and you want to use In-Process hosting, replace **.UseIISIntegration()** with **.UseIIS()**, otherwise you'll get startup errors.
.NET Core 1.0
^^^^^^^^^^^^^
Expand Down

0 comments on commit 46c1fe2

Please sign in to comment.