tntwist / NL.Serverless.AspNetCore

Hosting an AspNet Core App inside an Azure Function V3 HTTP Trigger
MIT License
20 stars 3 forks source link

ASP.NET 6 #66

Closed jdluzen closed 2 years ago

jdluzen commented 2 years ago

Hi,

some changes have happened with ASP.NET 6. Startup.cs and Program.cs have optionally combined into only Program.cs. I've attempted to get it to work, and attempted to revert back to the original split files. Both have been unsuccessful. I've been trying to get either isolated or non-isolated to work.

jdluzen commented 2 years ago

Well, false alarm looks like. I had to clean, delete the obj folder, remove and add similarly named Function related Nuget packages, and adjust launchSettings.json. It is currently running with dotnet-isolated.

Though I haven't fixed the combined Startup.cs and Program.cs.