jay
jay

Reputation: 1175

Azure Function .net framework

I tried to create an azure function in visual studio 2019 community edition.

It seems that it does not have any .net framework in the dropdownlist. Only v1 and v2 .Net Core. Is is possible to have .net 4.7 as an azure function?

enter image description here

Upvotes: 2

Views: 4161

Answers (1)

George Chen
George Chen

Reputation: 14334

You could choose the V1, the V1 is the .Net framework version. Yo could check this doc: Visual Studio runtime versions.

enter image description here

And after creating the v1 function, I change the TargetFramework to net472, it will work so you could create the .net 4.7 function.

Upvotes: 4

Related Questions