Skip to content

v5.0.0

Choose a tag to compare

@tntwist tntwist released this 12 Apr 17:15
· 3 commits to master since this release
74194eb

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:

  1. Update your FunctionApp to isolated worker.
  2. Delete the Startup of your FunctionApp. It´s not needed any more.
  3. Add the following line to the configuration of the IHostBuilder in the Program.cs of the FunctionApp:
    .ConfigureWebAppFunctionHost<WebApp.Startup>()
  4. 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).