admin管理员组

文章数量:1292299

Earlier this week, after an internal audit, I got notified about a logic app still being on .NET 6, rather than .NET 8. For all the function apps, I already changed this some time ago, but this logic app may have missed the list.

However, I am not sure how to upgrade it. There is Microsoft documentation (), but after adding the FUNCTIONS_INPROC_NET8_ENABLED set to '1', nothing really changed.

Honestly, I am still trying to figure out how I can even get the current version myself. When I look in the configuration, there is no clear indication about the current version.

Every reference I can find points to .NET 8.

I would like to know:

  1. How can I find the current version?
  2. How can I upgrade this version?

Thank you in advance.

Earlier this week, after an internal audit, I got notified about a logic app still being on .NET 6, rather than .NET 8. For all the function apps, I already changed this some time ago, but this logic app may have missed the list.

However, I am not sure how to upgrade it. There is Microsoft documentation (https://techcommunity.microsoft/blog/integrationsonazureblog/upgrading-logic-apps-standard-to-net-8/4372381), but after adding the FUNCTIONS_INPROC_NET8_ENABLED set to '1', nothing really changed.

Honestly, I am still trying to figure out how I can even get the current version myself. When I look in the configuration, there is no clear indication about the current version.

Every reference I can find points to .NET 8.

I would like to know:

  1. How can I find the current version?
  2. How can I upgrade this version?

Thank you in advance.

Share edited Feb 13 at 9:55 marc_s 755k184 gold badges1.4k silver badges1.5k bronze badges asked Feb 13 at 9:46 rickvanveldhuisenrickvanveldhuisen 52 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Did you check the netFrameworkVersion value in your Logic App's template (click Export template)?

If it's set to "v6.0" you can amend the ARM template to set it to "v8.0".

本文标签: Azure Logic App on NET 6NET 8 requiredStack Overflow