Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Function v2 .NET framework?

We currently have deployed a V1 Azure Function and are looking to upgrade this to V2[preview]. However I can't see any way to target .NET Framework 4.6.1 at the moment, only .NET Core when creating a v2 function.

Is it possible use .NET Framework in Azure Function v2?

like image 429
Patrick McInerney Avatar asked Apr 30 '18 13:04

Patrick McInerney


1 Answers

The Function Runtime in v2 only runs on .NET Core 2.0, so there is no way to target .NET Framework 4.6.1.

like image 174
David Ebbo Avatar answered Sep 28 '22 05:09

David Ebbo