Skip to content

Releases: tntwist/NL.Serverless.AspNetCore

v5.1.0

26 Aug 20:02
Compare
Choose a tag to compare

Updated dependencies.
Added section for deployment to Azure in Readme.

v5.0.0

12 Apr 17:15
74194eb
Compare
Choose a tag to compare

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).

v3.0.11

30 Jan 10:50
b20a39b
Compare
Choose a tag to compare

Fixed #32
Updated dependencies

v3.0.9

31 Jul 17:45
c4cf174
Compare
Choose a tag to compare

Fixed typo in Readme.md
Updated dependencies

v3.0.8

08 Jul 19:35
3ae3faa
Compare
Choose a tag to compare

Just updated dependencies.

v3.0.7.2

13 Jun 10:45
cc6c618
Compare
Choose a tag to compare

Fixes

Fixed Application Insights support (#19 )

v3.0.7.1

25 May 19:10
9424b7a
Compare
Choose a tag to compare

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

v3.0.7

09 May 19:41
baa1f63
Compare
Choose a tag to compare

updated dependencies

v3.0.5

20 Mar 15:40
Compare
Choose a tag to compare

Just updated dependencies.

v3.0.3

30 Jan 21:20
Compare
Choose a tag to compare

Features

Provides Nuget Libary for Azure functions host: https://www.nuget.org/packages/NL.Serverless.AspNetCore.AzureFunctionsHost/

Fixes

added support for RazorPages: see #7