Skip to content

Releases: tntwist/NL.Serverless.AspNetCore

v5.1.0

Choose a tag to compare

@tntwist tntwist released this 26 Aug 20:02

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

v5.0.0

Choose a tag to compare

@tntwist tntwist released this 12 Apr 17:15
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).

v3.0.11

Choose a tag to compare

@tntwist tntwist released this 30 Jan 10:50
b20a39b

Fixed #32
Updated dependencies

v3.0.9

Choose a tag to compare

@tntwist tntwist released this 31 Jul 17:45
c4cf174

Fixed typo in Readme.md
Updated dependencies

v3.0.8

Choose a tag to compare

@tntwist tntwist released this 08 Jul 19:35
3ae3faa

Just updated dependencies.

v3.0.7.2

Choose a tag to compare

@tntwist tntwist released this 13 Jun 10:45
cc6c618

Fixes

Fixed Application Insights support (#19 )

v3.0.7.1

Choose a tag to compare

@tntwist tntwist released this 25 May 19:10
9424b7a

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

Choose a tag to compare

@tntwist tntwist released this 09 May 19:41
baa1f63

updated dependencies

v3.0.5

Choose a tag to compare

@tntwist tntwist released this 20 Mar 15:40

Just updated dependencies.

v3.0.3

Choose a tag to compare

@tntwist tntwist released this 30 Jan 21:20

Features

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

Fixes

added support for RazorPages: see #7