/ notes
/ azfunctions
⇒ This is just a collection of notes, not a structured or comprehensive document. ⇐
Migrate Azure Function from NET 8 isolated to NET 10 isolated
Steps
- change the function project target framework to Net 10.0
<TargetFramework>net10.0</TargetFramework> - update packages
Microsoft.Azure.Functions.Worker.*to the latest versions - also consider to update other packages like
Microsoft.ApplicationInsights.WorkerServiceto the latest version - publish to Azure
- check azure / function / Settings / Configuration / Stack settings : Set Version to
NET 10.0 Isolated
Extras (not required)
- migrate from
HostBuildertoFunctionsApplication.CreateBuilder