You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Allow for per-package release notes via `RELEASENOTES.md`
- Organize common release targets - packaging and versioning
- Update ESRP signing task, drops need for netcoreapp 2.1
Abstractions for `Microsoft.DurableTask`. This package is for the core types used to define orchestrations and activities that are ran as part of Durable Task Framework.
2
+
3
+
Commonly used types:
4
+
-`TaskOrchestrator<TInput, TOutput>`
5
+
-`TaskActivity<TInput, TOutput>`
6
+
7
+
For more information, see https://github.com/microsoft/durabletask-dotnet
Client abstractions for `Microsoft.DurableTask`. A `DurableTaskClient` is used for interacting with a task hub. Including starting new orchestrations, retrieving orchestration details, sending events to orchestrations, etc. This package does not include a concrete client implementation. Instead a separate client package must be used, such as `Microsoft.DurableTask.Client.Grpc`.
2
+
3
+
Commonly used types:
4
+
-`DurableTaskClient`
5
+
-`DurableTaskClientOptions`
6
+
-`IDurableTaskClientProvider`
7
+
-`IDurableTaskClientBuilder`
8
+
9
+
For more information, see https://github.com/microsoft/durabletask-dotnet
0 commit comments