An open API service indexing awesome lists of open source software.

https://github.com/hajekj/az-functions-aspnetcore

Running full ASP.NET Core in Azure Functions.
https://github.com/hajekj/az-functions-aspnetcore

aspnetcore azure azure-functions net60

Last synced: 2 months ago
JSON representation

Running full ASP.NET Core in Azure Functions.

Awesome Lists containing this project

README

          

# Running ASP.NET Core in Azure Functions

Using https://github.com/tntwist/NL.Serverless.AspNetCore

In order for this to work correctly, you need to publish WebApp, and then copy the published wwwroot/ folder from WebApp to the Function output due to StaticWebAssets not being included and wwwroot/ content being dropped during Function build.

This is now done directly in .csproj of the Azure Function. It is kinda obscure, I suppose we could reuse the StaticWebAssets targets, but this does the job.