-
I used the Visual Studio Upgrade Assistant to upgrade my functions project from .NET 6 to .NET 8. The project uses functions runtime v4 (in-process model), and contains many different function types, including durable functions. Because .NET 8 does not yet support in-process, the assistant changes my process model to worker. So far so good. But then it also removes references to Microsoft.Azure.WebJobs.Extensions.DurableTask and replaces it with Microsoft.Azure.Functions.Worker.Extensions.DurableTask. This breaks my build because there is (for example) no definition for Am I missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Indeed, there are some additional changes you'll need to make to your code to get it fully running. You can find a migration guide here: https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-dotnet-isolated-overview. For /cc @jviau |
Beta Was this translation helpful? Give feedback.
if only input is needed, it's possible to bind it directly to the method signature:
The article mentions In the .NET-isolated worker, only serializable types representing y…