6

Now that .Net Core 3.0 has released what's the story for Azure Functions on core3?

When I try to flip a project to <TargetFramework>netcoreapp3.0</TargetFramework> it still reports as running on 2.2.

If I try to access an api that's 3.0 only it explodes, which makes sense since it seems to be forcing it's runtime despite the project settings.

AndyV
  • 388
  • 1
  • 6
  • 14

2 Answers2

5

Azure Functions is not available for .NET CORE 3 yet. For more information check here

Update

The Azure Functions 3.0 preview is now available!

Please see this post for instructions on how to use the preview on Azure and how to use the 3.0 tools locally: https://dev.to/azure/develop-azure-functions-using-net-core-3-0-gcm

Update 2

The Azure Functions 3.0 are generally available since December 9, 2019.

For migration instructions refer to docs: https://learn.microsoft.com/en-us/azure/azure-functions/functions-versions

Jan Palas
  • 1,865
  • 1
  • 23
  • 35
HariHaran
  • 3,642
  • 2
  • 16
  • 33
  • 1
    The issue was updated : .NET Core 3 is available in preview, and should be available in 2020 – glacasa Oct 30 '19 at 09:31
  • I looked at that post for instructions to preview, but after updating templates according to the instructions, the "Azure Functions v3 Preview" isn't available in the dropdown. I was going to leave a comment on the blog asking about it, but the amount of information they ask before you can comment are too much. – Paul Dempsey Nov 02 '19 at 01:48
  • 1
    @PaulDempsey did you set the environment variable (AzureFunctionsHiddenTagsVisible)? And restart VS? It worked for me.. – Zaphod Nov 08 '19 at 09:52
  • same issue for me – jagge123 Nov 13 '19 at 09:01
2

Yesterday (09.12.2019), Microsoft announced the Azure Functions 3.0 go-live release which supports .NET Core 3.1 which has a Long Term Support (LTS).

On March 3, 2020, the Support for .NET Core 3.0 ends - so for anyone reading this, you should use .NET Core 3.1 and Azure Functions 3.0

Further reading: How and why you should upgrade your .NET Azure Functions to 3.0

Martin Brandl
  • 56,134
  • 13
  • 133
  • 172