0

How can I use Azure functions with target framework .net Core, I am able to use framework 4.6.x but not .net core.

I tried to change net461 to .net core but does not work. I could not find anything on Microsoft site.

Any leads please.

  • Possible duplicate of [Target .NET Core 2.0 with Azure Functions in Visual Studio 2017](https://stackoverflow.com/questions/46608959/target-net-core-2-0-with-azure-functions-in-visual-studio-2017) – Mikhail Shilkov Jan 12 '18 at 08:29

1 Answers1

0

You need to create new project: File -> New Project -> Visual C# -> Cloud -> Azure Functions and then you get a window in which you can choose target framework, as shown in the photo below:

enter image description here

For that to work you nned to have Azure Functions and Web Jobs Tools - you can install it through Tools -> Extensions and Updates.

maciek
  • 521
  • 1
  • 4
  • 18