Releases: tntwist/NL.Serverless.AspNetCore
Releases · tntwist/NL.Serverless.AspNetCore
v5.1.0
v5.0.0
Changes
- Use new isolated functions worker
- Support for .Net 5
Breaking
This libary now requires the new isolated functions worker. In order to upgrade your existing application you have to do the following:
- Update your FunctionApp to isolated worker.
- Delete the Startup of your FunctionApp. It´s not needed any more.
- Add the following line to the configuration of the IHostBuilder in the Program.cs of the FunctionApp:
.ConfigureWebAppFunctionHost<WebApp.Startup>()
- Make sure your WebAppProxy Function takes HttpRequestData as input an returns HttpReponseData. It should look like this
Important: SignalR Quirk
SignalR currently only works with Long Pooling as transport method. Either connect with this transport method client side or configure your Hubs to just support Long Pooling (see here).