As there were some breaking changes in the 2.0 release of DurableTask library, changes are needed for DurableFunctions.FSharp to work with the latest version.
I've updated the package reference and changed the code to fix the breaking changes. Those included:
moving from DurableOrchestrationContext and DurableOrchestrationClient to IDurableOrchestrationContext and IDurableOrchestrationClient
use DurableClient instead of OrchestrationClient
update the namespaces
As it's a breaking change, I guess it should be released as a new version.
As there were some breaking changes in the 2.0 release of DurableTask library, changes are needed for DurableFunctions.FSharp to work with the latest version.
I've updated the package reference and changed the code to fix the breaking changes. Those included:
DurableOrchestrationContext
andDurableOrchestrationClient
toIDurableOrchestrationContext
andIDurableOrchestrationClient
DurableClient
instead ofOrchestrationClient
As it's a breaking change, I guess it should be released as a new version.