You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
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).
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Fixes
Function startup crash when webRoot Folder was missing: #12
Configure logging for the Asp.Net Core app properly: #13
Template replaces wrong namespace: #16