├── .editorconfig ├── .github ├── copilot-instructions.md ├── dependabot.yml ├── policies │ └── resourceManagement.yml └── workflows │ ├── codeQL.yml │ └── validate-build.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── Microsoft.DurableTask.sln ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure-pipelines-release.yml ├── doc └── release_process.md ├── eng ├── ci │ ├── code-mirror.yml │ └── official-build.yml ├── key.snk ├── publish │ └── publish.yml ├── targets │ ├── InternalsVisibleTo.targets │ ├── Release.props │ ├── Release.targets │ └── SharedFiles.targets └── templates │ └── build.yml ├── generate_changelog.py ├── global.json ├── list-nuget-packages-links.ps1 ├── misc └── misc.csproj ├── nuget.config ├── samples ├── AzureFunctionsApp │ ├── AzureFunctionsApp.cs │ ├── AzureFunctionsApp.csproj │ ├── Entities │ │ ├── Counter.cs │ │ ├── Lifetime.cs │ │ ├── User.cs │ │ ├── counters.http │ │ ├── lifetimes.http │ │ └── users.http │ ├── Fib.cs │ ├── Greeting.cs │ ├── HelloCitiesTyped.cs │ ├── HelloCitiesUntyped.cs │ ├── Program.cs │ ├── host.json │ └── local.settings.json ├── AzureFunctionsUnitTests │ ├── AzureFunctionsApp.Tests.csproj │ └── SampleUnitTests.cs ├── ConsoleApp │ ├── ConsoleApp.csproj │ └── Program.cs ├── ConsoleAppMinimal │ ├── ConsoleAppMinimal.csproj │ ├── Program.cs │ └── Tasks.cs ├── Directory.Build.props ├── Directory.Packages.props ├── LargePayloadConsoleApp │ ├── LargePayloadConsoleApp.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── README.md ├── NetFxConsoleApp │ ├── NetFxConsoleApp.csproj │ └── Program.cs ├── ScheduleConsoleApp │ ├── Activities │ │ └── GetStockPrice.cs │ ├── Orchestrators │ │ └── StockPriceOrchestrator.cs │ ├── Program.cs │ ├── ScheduleConsoleApp.csproj │ ├── ScheduleDemo.cs │ └── appsettings.json └── ScheduleWebApp │ ├── Activities │ └── CacheClearingActivity.cs │ ├── Models │ ├── CreateScheduleRequest.cs │ └── UpdateScheduleRequest.cs │ ├── Orchestrations │ └── CacheClearingOrchestrator.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ScheduleController.cs │ ├── ScheduleWebApp.csproj │ ├── ScheduleWebApp.http │ ├── appsettings.Development.json │ └── appsettings.json ├── src ├── Abstractions │ ├── Abstractions.csproj │ ├── AsyncPageable.cs │ ├── Converters │ │ └── JsonDataConverter.cs │ ├── DataConverter.cs │ ├── DurableTaskAttribute.cs │ ├── DurableTaskCoreExceptionsExtensions.cs │ ├── DurableTaskRegistry.Activities.cs │ ├── DurableTaskRegistry.Entities.cs │ ├── DurableTaskRegistry.Orchestrators.cs │ ├── DurableTaskRegistry.cs │ ├── Entities │ │ ├── CallEntityOptions.cs │ │ ├── EntityInstanceId.cs │ │ ├── EntityOperationFailedException.cs │ │ ├── TaskEntity.cs │ │ ├── TaskEntityContext.cs │ │ ├── TaskEntityHelpers.cs │ │ ├── TaskEntityOperation.cs │ │ ├── TaskEntityOperationExtensions.cs │ │ ├── TaskEntityState.cs │ │ └── TaskOrchestrationEntityFeature.cs │ ├── FuncTaskActivity.cs │ ├── FuncTaskOrchestrator.cs │ ├── Internal │ │ └── IOrchestrationSubmitter.cs │ ├── Page.cs │ ├── Pageable.cs │ ├── ParentOrchestrationInstance.cs │ ├── README.md │ ├── RELEASENOTES.md │ ├── RetryHandler.cs │ ├── RetryPolicy.cs │ ├── TaskActivity.cs │ ├── TaskActivityContext.cs │ ├── TaskFailedException.cs │ ├── TaskFailureDetails.cs │ ├── TaskName.cs │ ├── TaskOptions.cs │ ├── TaskOrchestrationContext.cs │ ├── TaskOrchestrationVersioningUtils.cs │ ├── TaskOrchestrator.cs │ ├── TaskRetryOptions.cs │ ├── TaskVersion.cs │ └── TypeExtensions.cs ├── Analyzers │ ├── Activities │ │ └── MatchingInputOutputTypeActivityAnalyzer.cs │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── Analyzers.csproj │ ├── AnalyzersCategories.cs │ ├── CONTRIBUTING.md │ ├── Functions │ │ ├── AttributeBinding │ │ │ ├── DurableClientBindingAnalyzer.cs │ │ │ ├── DurableClientBindingFixer.cs │ │ │ ├── EntityTriggerBindingAnalyzer.cs │ │ │ ├── EntityTriggerBindingFixer.cs │ │ │ ├── MatchingAttributeBindingAnalyzer.cs │ │ │ ├── MatchingAttributeBindingFixer.cs │ │ │ ├── OrchestrationTriggerBindingAnalyzer.cs │ │ │ └── OrchestrationTriggerBindingFixer.cs │ │ └── Orchestration │ │ │ ├── CancellationTokenOrchestrationAnalyzer.cs │ │ │ └── OtherBindingsOrchestrationAnalyzer.cs │ ├── KnownTypeSymbols.Azure.cs │ ├── KnownTypeSymbols.Durable.cs │ ├── KnownTypeSymbols.Functions.cs │ ├── KnownTypeSymbols.Net.cs │ ├── KnownTypeSymbols.cs │ ├── Orchestration │ │ ├── DateTimeOrchestrationAnalyzer.cs │ │ ├── DateTimeOrchestrationFixer.cs │ │ ├── DelayOrchestrationAnalyzer.cs │ │ ├── DelayOrchestrationFixer.cs │ │ ├── EnvironmentOrchestrationAnalyzer.cs │ │ ├── GuidOrchestrationAnalyzer.cs │ │ ├── GuidOrchestrationFixer.cs │ │ ├── IOOrchestrationAnalyzer.cs │ │ ├── OrchestrationAnalyzer.cs │ │ ├── OrchestrationContextFixer.cs │ │ └── ThreadTaskOrchestrationAnalyzer.cs │ ├── Resources.resx │ └── RoslynExtensions.cs ├── Client │ ├── AzureManaged │ │ ├── Client.AzureManaged.csproj │ │ ├── DurableTaskSchedulerClientExtensions.cs │ │ ├── DurableTaskSchedulerClientOptions.cs │ │ └── RELEASENOTES.md │ ├── Core │ │ ├── Client.csproj │ │ ├── DependencyInjection │ │ │ ├── DefaultDurableTaskClientBuilder.cs │ │ │ ├── DefaultDurableTaskClientProvider.cs │ │ │ ├── DurableTaskClientBuilderExtensions.cs │ │ │ ├── DurableTaskClientExtensions.cs │ │ │ ├── IDurableTaskClientBuilder.cs │ │ │ ├── IDurableTaskClientProvider.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── DurableTaskClient.cs │ │ ├── DurableTaskClientOptions.cs │ │ ├── Entities │ │ │ ├── CleanEntityStorage.cs │ │ │ ├── DurableEntityClient.cs │ │ │ ├── EntityMetadata.cs │ │ │ ├── EntityMetadataConverter.cs │ │ │ └── EntityQuery.cs │ │ ├── OrchestrationMetadata.cs │ │ ├── OrchestrationQuery.cs │ │ ├── OrchestrationRuntimeStatus.cs │ │ ├── PurgeInstanceOptions.cs │ │ ├── PurgeInstancesFilter.cs │ │ ├── PurgeResult.cs │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── SerializedData.cs │ │ └── TerminateInstanceOptions.cs │ ├── Grpc │ │ ├── Client.Grpc.csproj │ │ ├── DependencyInjection │ │ │ └── DurableTaskClientBuilderExtensions.cs │ │ ├── GrpcDurableEntityClient.cs │ │ ├── GrpcDurableTaskClient.cs │ │ ├── GrpcDurableTaskClientOptions.cs │ │ ├── Logs.cs │ │ ├── ProtoUtils.cs │ │ ├── README.md │ │ └── RELEASENOTES.md │ └── OrchestrationServiceClientShim │ │ ├── Client.OrchestrationServiceClientShim.csproj │ │ ├── DependencyInjection │ │ └── DurableTaskClientBuilderExtensions.cs │ │ ├── README.md │ │ ├── ShimDurableEntityClient.cs │ │ ├── ShimDurableTaskClient.cs │ │ ├── ShimDurableTaskClientOptions.cs │ │ └── ShimExtensions.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Extensions │ └── AzureBlobPayloads │ │ ├── AzureBlobPayloads.csproj │ │ ├── DependencyInjection │ │ ├── DurableTaskClientBuilderExtensions.AzureBlobPayloads.cs │ │ ├── DurableTaskWorkerBuilderExtensions.AzureBlobPayloads.cs │ │ └── ServiceCollectionExtensions.AzureBlobPayloads.cs │ │ ├── Interceptors │ │ ├── AzureBlobPayloadsSideCarInterceptor.cs │ │ └── PayloadInterceptor.cs │ │ ├── Options │ │ └── LargePayloadStorageOptions.cs │ │ └── PayloadStore │ │ ├── BlobPayloadStore.cs │ │ └── PayloadStore.cs ├── Generators │ ├── AzureFunctions │ │ ├── DurableFunction.cs │ │ ├── SyntaxNodeUtility.cs │ │ └── TypedParameter.cs │ ├── DurableTaskSourceGenerator.cs │ ├── Generators.csproj │ └── README.md ├── Grpc │ ├── Grpc.csproj │ ├── README.md │ ├── RELEASENOTES.md │ ├── orchestrator_service.proto │ ├── refresh-protos.ps1 │ └── versions.txt ├── InProcessTestHost │ ├── DurableTaskTestHost.cs │ ├── InProcessTestHost.csproj │ ├── README.md │ └── Sidecar │ │ ├── AsyncManualResetEvent.cs │ │ ├── Dispatcher │ │ ├── GrpcCreateSubOrchestrationAction.cs │ │ ├── GrpcOrchestratorExecutionResult.cs │ │ ├── GrpcScheduleTaskOrchestratorAction.cs │ │ ├── GrpcSubOrchestrationInstanceCreatedEvent.cs │ │ ├── ITaskExecutor.cs │ │ ├── ITrafficSignal.cs │ │ ├── TaskActivityDispatcher.cs │ │ ├── TaskHubDispatcherHost.cs │ │ ├── TaskOrchestrationDispatcher.cs │ │ └── WorkItemDispatcher.cs │ │ ├── Grpc │ │ ├── ProtobufUtils.cs │ │ ├── TaskHubGrpcServer.cs │ │ └── TaskHubGrpcServerOptions.cs │ │ ├── InMemoryOrchestrationService.cs │ │ ├── Logs.cs │ │ └── Utils.cs ├── ScheduledTasks │ ├── Client │ │ ├── DefaultScheduleClient.cs │ │ ├── DefaultScheduledTaskClient.cs │ │ ├── ScheduleClient.cs │ │ └── ScheduledTaskClient.cs │ ├── Entity │ │ └── Schedule.cs │ ├── Exception │ │ ├── ScheduleClientValidationException.cs │ │ ├── ScheduleInvalidTransitionException.cs │ │ └── ScheduleNotFoundException.cs │ ├── Extension │ │ ├── DurableTaskClientBuilderExtensions.cs │ │ └── DurableTaskWorkerBuilderExtensions.cs │ ├── Logging │ │ ├── Logs.Client.cs │ │ └── Logs.Entity.cs │ ├── Models │ │ ├── ScheduleConfiguration.cs │ │ ├── ScheduleCreationOptions.cs │ │ ├── ScheduleDescription.cs │ │ ├── ScheduleQuery.cs │ │ ├── ScheduleState.cs │ │ ├── ScheduleStatus.cs │ │ ├── ScheduleTransitions.cs │ │ └── ScheduleUpdateOptions.cs │ ├── Orchestrations │ │ └── ExecuteScheduleOperationOrchestrator.cs │ └── ScheduledTasks.csproj ├── Shared │ ├── AzureManaged │ │ ├── AccessTokenCache.cs │ │ ├── DurableTaskSchedulerConnectionString.cs │ │ ├── DurableTaskVersionUtil.cs │ │ └── GrpcRetryPolicyDefaults.cs │ ├── Core │ │ ├── AsyncDisposable.cs │ │ ├── CSharpLangCompat.cs │ │ ├── NullableAttributes.cs │ │ ├── RetryPolicyExtensions.cs │ │ ├── TaskExtensions.cs │ │ └── Validation │ │ │ ├── Check.cs │ │ │ └── Verify.cs │ ├── DependencyInjection │ │ └── ServiceProviderExtensions.cs │ ├── Grpc │ │ ├── EntityConversions.cs │ │ ├── ProtoUtils.cs │ │ ├── Tracing │ │ │ ├── DiagnosticActivityExtensions.cs │ │ │ ├── FieldInfoExtensionMethods.cs │ │ │ ├── Schema.cs │ │ │ ├── TraceActivityConstants.cs │ │ │ └── TraceHelper.cs │ │ └── Usings.cs │ └── Shared.csproj ├── Worker │ ├── AzureManaged │ │ ├── DurableTaskSchedulerWorkerExtensions.cs │ │ ├── DurableTaskSchedulerWorkerOptions.cs │ │ ├── RELEASENOTES.md │ │ └── Worker.AzureManaged.csproj │ ├── Core │ │ ├── DependencyInjection │ │ │ ├── DefaultDurableTaskWorkerBuilder.cs │ │ │ ├── DurableTaskWorkerBuilderExtensions.cs │ │ │ ├── IDurableTaskWorkerBuilder.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── DurableTaskFactory.cs │ │ ├── DurableTaskRegistryExtensions.cs │ │ ├── DurableTaskWorkerOptions.cs │ │ ├── ExceptionPropertiesProviderAdapter.cs │ │ ├── ExtendedSessionState.cs │ │ ├── ExtendedSessionsCache.cs │ │ ├── Hosting │ │ │ └── DurableTaskWorker.cs │ │ ├── IDurableTaskFactory.cs │ │ ├── IExceptionPropertiesProvider.cs │ │ ├── IOrchestrationFilter.cs │ │ ├── Logs.cs │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── Shims │ │ │ ├── DurableTaskShimFactory.cs │ │ │ ├── JsonDataConverterShim.cs │ │ │ ├── OrchestrationInvocationContext.cs │ │ │ ├── TaskActivityShim.cs │ │ │ ├── TaskEntityShim.cs │ │ │ ├── TaskOrchestrationContextWrapper.EventSource.cs │ │ │ ├── TaskOrchestrationContextWrapper.cs │ │ │ ├── TaskOrchestrationEntityContext.cs │ │ │ └── TaskOrchestrationShim.cs │ │ └── Worker.csproj │ └── Grpc │ │ ├── DependencyInjection │ │ └── DurableTaskWorkerBuilderExtensions.cs │ │ ├── GrpcDurableTaskWorker.Processor.cs │ │ ├── GrpcDurableTaskWorker.cs │ │ ├── GrpcDurableTaskWorkerOptions.cs │ │ ├── GrpcEntityRunner.cs │ │ ├── GrpcExtensions.cs │ │ ├── GrpcOrchestrationRunner.cs │ │ ├── Internal │ │ └── InternalOptionsExtensions.cs │ │ ├── Logs.cs │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ └── Worker.Grpc.csproj └── dirs.proj ├── stylecop.json └── test ├── Abstractions.Tests ├── Abstractions.Tests.csproj ├── Entities │ ├── EntityTaskEntityTests.cs │ ├── Mocks │ │ ├── TestEntityOperation.cs │ │ └── TestEntityState.cs │ ├── StateTaskEntityTests.cs │ └── TaskEntityHelpersTests.cs ├── PageableTests.cs ├── TaskActivityTests.cs ├── TaskNameTests.cs ├── TaskOptionsTests.cs ├── TaskOrchestrationContextVersionTests.cs ├── TaskOrchestratorTests.cs └── Usings.cs ├── Analyzers.Tests ├── Activities │ └── MatchingInputOutputTypeActivityAnalyzerTests.cs ├── Analyzers.Tests.csproj ├── Functions │ ├── AttributeBinding │ │ ├── DurableClientBindingAnalyzerTests.cs │ │ ├── EntityTriggerBindingAnalyzerTests.cs │ │ ├── MatchingAttributeBindingSpecificationTests.cs │ │ └── OrchestrationTriggerBindingAnalyzerTests.cs │ └── Orchestration │ │ ├── CancellationTokenOrchestrationAnalyzerTests.cs │ │ └── OtherBindingsOrchestrationAnalyzer.cs ├── Orchestration │ ├── DateTimeOrchestrationAnalyzerTests.cs │ ├── DelayOrchestrationAnalyzerTests.cs │ ├── EnvironmentOrchestrationAnalyzerTests.cs │ ├── GuidOrchestrationAnalyzerTests.cs │ ├── IOOrchestrationTests.cs │ └── ThreadTaskOrchestrationAnalyzerTests.cs ├── Usings.cs ├── Verifiers │ ├── CSharpAnalyzerVerifier.Durable.cs │ ├── CSharpAnalyzerVerifier.cs │ ├── CSharpCodeFixVerifier.Durable.cs │ ├── CSharpCodeFixVerifier.cs │ └── References.cs └── Wrapper.cs ├── Benchmarks ├── Benchmarks.csproj ├── DateTimeOrchestrationAnalyzerBenchmarks.cs ├── Directory.Build.props ├── DurableTaskRegistryBenchmarks.cs └── Program.cs ├── Client ├── AzureManaged.Tests │ ├── Client.AzureManaged.Tests.csproj │ ├── DurableTaskSchedulerClientExtensionsTests.cs │ └── DurableTaskSchedulerClientOptionsTests.cs ├── Core.Tests │ ├── Client.Tests.csproj │ ├── DependencyInjection │ │ ├── DefaultDurableTaskClientBuilderTests.cs │ │ ├── DefaultDurableTaskClientProviderTests.cs │ │ ├── DurableTaskClientBuilderExtensionsTests.cs │ │ └── ServiceCollectionExtensionsTests.cs │ ├── Entities │ │ └── EntityMetadataTests.cs │ └── Usings.cs ├── Grpc.Tests │ ├── Client.Grpc.Tests.csproj │ ├── DependencyInjection │ │ └── DurableTaskClientBuilderExtensionsTests.cs │ └── Usings.cs └── OrchestrationServiceClientShim.Tests │ ├── Client.OrchestrationServiceClientShim.Tests.csproj │ ├── DependencyInjection │ └── DurableTaskClientBuilderExtensionsTests.cs │ ├── ShimDurableEntityClientTests.cs │ ├── ShimDurableTaskClientTests.cs │ └── Usings.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Generators.Tests ├── AzureFunctionsTests.cs ├── ClassBasedSyntaxTests.cs ├── Generators.Tests.csproj ├── Usings.cs └── Utils │ ├── CSharpSourceGeneratorVerifier.cs │ └── TestHelpers.cs ├── Grpc.IntegrationTests ├── ClassSyntaxIntegrationTests.cs ├── ClassSyntaxTestOrchestration.cs ├── ExternalEventStackTests.cs ├── Grpc.IntegrationTests.csproj ├── GrpcDurableTaskClientIntegrationTests.cs ├── GrpcSidecarFixture.cs ├── IntegrationTestBase.cs ├── LargePayloadTests.cs ├── OrchestrationErrorHandling.cs ├── OrchestrationPatterns.cs ├── PageableIntegrationTests.cs ├── TracingIntegrationTests.cs └── Usings.cs ├── InProcessTestHost.Tests ├── BasicOrchestrationTests.cs └── InProcessTestHost.Tests.csproj ├── ScheduledTasks.Tests ├── Client │ ├── DefaultScheduleClientTests.cs │ └── DefaultScheduledTaskClientTests.cs ├── Entity │ └── ScheduleTests.cs ├── Models │ ├── ScheduleConfigurationTests.cs │ ├── ScheduleCreationOptionsTests.cs │ └── ScheduleStateTests.cs ├── Orchestrations │ └── ExecuteScheduleOperationOrchestratorTests.cs └── ScheduledTasks.Tests.csproj ├── Shared └── AzureManaged.Tests │ ├── AccessTokenCacheTests.cs │ ├── DurableTaskSchedulerConnectionStringTests.cs │ ├── GrpcRetryPolicyDefaultsTests.cs │ └── Shared.AzureManaged.Tests.csproj ├── TestHelpers ├── Logging │ ├── LogEntry.cs │ ├── TestLogProvider.cs │ └── TestLogger.cs ├── RandomExtensions.cs └── TestHelpers.csproj └── Worker ├── AzureManaged.Tests ├── DurableTaskSchedulerWorkerExtensionsTests.cs ├── DurableTaskSchedulerWorkerOptionsTests.cs └── Worker.AzureManaged.Tests.csproj ├── Core.Tests ├── DependencyInjection │ ├── DefaultDurableTaskWorkerBuilderTests.cs │ ├── DurableTaskWorkerBuilderExtensionsTests.cs │ └── ServiceCollectionExtensionsTests.cs ├── DurableTaskRegistryTests.Activities.cs ├── DurableTaskRegistryTests.Orchestrators.cs ├── Shims │ └── TaskOrchestrationContextWrapperTests.cs ├── Usings.cs └── Worker.Tests.csproj └── Grpc.Tests ├── DependencyInjection └── DurableTaskBuilderExtensionsTests.cs ├── ExceptionPropertiesProviderRegistrationTests.cs ├── GrpcOrchestrationRunnerTests.cs ├── RunBackgroundTaskLoggingTests.cs ├── Usings.cs ├── Worker.Grpc.Tests.csproj └── WorkerCapabilitiesTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/codeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.github/workflows/codeQL.yml -------------------------------------------------------------------------------- /.github/workflows/validate-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.github/workflows/validate-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.DurableTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/Microsoft.DurableTask.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure-pipelines-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/azure-pipelines-release.yml -------------------------------------------------------------------------------- /doc/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/doc/release_process.md -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/ci/official-build.yml -------------------------------------------------------------------------------- /eng/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/key.snk -------------------------------------------------------------------------------- /eng/publish/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/publish/publish.yml -------------------------------------------------------------------------------- /eng/targets/InternalsVisibleTo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/targets/InternalsVisibleTo.targets -------------------------------------------------------------------------------- /eng/targets/Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/targets/Release.props -------------------------------------------------------------------------------- /eng/targets/Release.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/targets/Release.targets -------------------------------------------------------------------------------- /eng/targets/SharedFiles.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/targets/SharedFiles.targets -------------------------------------------------------------------------------- /eng/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/eng/templates/build.yml -------------------------------------------------------------------------------- /generate_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/generate_changelog.py -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /list-nuget-packages-links.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/list-nuget-packages-links.ps1 -------------------------------------------------------------------------------- /misc/misc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/misc/misc.csproj -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/nuget.config -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/AzureFunctionsApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/AzureFunctionsApp.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/AzureFunctionsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/AzureFunctionsApp.csproj -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/Counter.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/Lifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/Lifetime.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/User.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/counters.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/counters.http -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/lifetimes.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/lifetimes.http -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Entities/users.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Entities/users.http -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Fib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Fib.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Greeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Greeting.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/HelloCitiesTyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/HelloCitiesTyped.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/HelloCitiesUntyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/HelloCitiesUntyped.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/Program.cs -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/host.json -------------------------------------------------------------------------------- /samples/AzureFunctionsApp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsApp/local.settings.json -------------------------------------------------------------------------------- /samples/AzureFunctionsUnitTests/AzureFunctionsApp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsUnitTests/AzureFunctionsApp.Tests.csproj -------------------------------------------------------------------------------- /samples/AzureFunctionsUnitTests/SampleUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/AzureFunctionsUnitTests/SampleUnitTests.cs -------------------------------------------------------------------------------- /samples/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /samples/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /samples/ConsoleAppMinimal/ConsoleAppMinimal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ConsoleAppMinimal/ConsoleAppMinimal.csproj -------------------------------------------------------------------------------- /samples/ConsoleAppMinimal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ConsoleAppMinimal/Program.cs -------------------------------------------------------------------------------- /samples/ConsoleAppMinimal/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ConsoleAppMinimal/Tasks.cs -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/Directory.Packages.props -------------------------------------------------------------------------------- /samples/LargePayloadConsoleApp/LargePayloadConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/LargePayloadConsoleApp/LargePayloadConsoleApp.csproj -------------------------------------------------------------------------------- /samples/LargePayloadConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/LargePayloadConsoleApp/Program.cs -------------------------------------------------------------------------------- /samples/LargePayloadConsoleApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/LargePayloadConsoleApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/LargePayloadConsoleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/LargePayloadConsoleApp/README.md -------------------------------------------------------------------------------- /samples/NetFxConsoleApp/NetFxConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/NetFxConsoleApp/NetFxConsoleApp.csproj -------------------------------------------------------------------------------- /samples/NetFxConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/NetFxConsoleApp/Program.cs -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/Activities/GetStockPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/Activities/GetStockPrice.cs -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/Orchestrators/StockPriceOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/Orchestrators/StockPriceOrchestrator.cs -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/Program.cs -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/ScheduleConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/ScheduleConsoleApp.csproj -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/ScheduleDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/ScheduleDemo.cs -------------------------------------------------------------------------------- /samples/ScheduleConsoleApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleConsoleApp/appsettings.json -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Activities/CacheClearingActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Activities/CacheClearingActivity.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Models/CreateScheduleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Models/CreateScheduleRequest.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Models/UpdateScheduleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Models/UpdateScheduleRequest.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Orchestrations/CacheClearingOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Orchestrations/CacheClearingOrchestrator.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Program.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/ScheduleWebApp/ScheduleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/ScheduleController.cs -------------------------------------------------------------------------------- /samples/ScheduleWebApp/ScheduleWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/ScheduleWebApp.csproj -------------------------------------------------------------------------------- /samples/ScheduleWebApp/ScheduleWebApp.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/ScheduleWebApp.http -------------------------------------------------------------------------------- /samples/ScheduleWebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/appsettings.Development.json -------------------------------------------------------------------------------- /samples/ScheduleWebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/samples/ScheduleWebApp/appsettings.json -------------------------------------------------------------------------------- /src/Abstractions/Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Abstractions.csproj -------------------------------------------------------------------------------- /src/Abstractions/AsyncPageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/AsyncPageable.cs -------------------------------------------------------------------------------- /src/Abstractions/Converters/JsonDataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Converters/JsonDataConverter.cs -------------------------------------------------------------------------------- /src/Abstractions/DataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DataConverter.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskAttribute.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskCoreExceptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskCoreExceptionsExtensions.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskRegistry.Activities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskRegistry.Activities.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskRegistry.Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskRegistry.Entities.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskRegistry.Orchestrators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskRegistry.Orchestrators.cs -------------------------------------------------------------------------------- /src/Abstractions/DurableTaskRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/DurableTaskRegistry.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/CallEntityOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/CallEntityOptions.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/EntityInstanceId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/EntityInstanceId.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/EntityOperationFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/EntityOperationFailedException.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntity.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntityContext.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntityHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntityHelpers.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntityOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntityOperation.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntityOperationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntityOperationExtensions.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskEntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskEntityState.cs -------------------------------------------------------------------------------- /src/Abstractions/Entities/TaskOrchestrationEntityFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Entities/TaskOrchestrationEntityFeature.cs -------------------------------------------------------------------------------- /src/Abstractions/FuncTaskActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/FuncTaskActivity.cs -------------------------------------------------------------------------------- /src/Abstractions/FuncTaskOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/FuncTaskOrchestrator.cs -------------------------------------------------------------------------------- /src/Abstractions/Internal/IOrchestrationSubmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Internal/IOrchestrationSubmitter.cs -------------------------------------------------------------------------------- /src/Abstractions/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Page.cs -------------------------------------------------------------------------------- /src/Abstractions/Pageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/Pageable.cs -------------------------------------------------------------------------------- /src/Abstractions/ParentOrchestrationInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/ParentOrchestrationInstance.cs -------------------------------------------------------------------------------- /src/Abstractions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/README.md -------------------------------------------------------------------------------- /src/Abstractions/RELEASENOTES.md: -------------------------------------------------------------------------------- 1 | - Microsoft.Azure.DurableTask.Core dependency increased to `3.0.0` -------------------------------------------------------------------------------- /src/Abstractions/RetryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/RetryHandler.cs -------------------------------------------------------------------------------- /src/Abstractions/RetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/RetryPolicy.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskActivity.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskActivityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskActivityContext.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskFailedException.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskFailureDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskFailureDetails.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskName.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskOptions.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskOrchestrationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskOrchestrationContext.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskOrchestrationVersioningUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskOrchestrationVersioningUtils.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskOrchestrator.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskRetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskRetryOptions.cs -------------------------------------------------------------------------------- /src/Abstractions/TaskVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TaskVersion.cs -------------------------------------------------------------------------------- /src/Abstractions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Abstractions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Analyzers/Activities/MatchingInputOutputTypeActivityAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Activities/MatchingInputOutputTypeActivityAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Analyzers/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Analyzers/Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Analyzers.csproj -------------------------------------------------------------------------------- /src/Analyzers/AnalyzersCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/AnalyzersCategories.cs -------------------------------------------------------------------------------- /src/Analyzers/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/DurableClientBindingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/DurableClientBindingAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/DurableClientBindingFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/DurableClientBindingFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/EntityTriggerBindingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/EntityTriggerBindingAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/EntityTriggerBindingFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/EntityTriggerBindingFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/MatchingAttributeBindingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/MatchingAttributeBindingAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/MatchingAttributeBindingFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/MatchingAttributeBindingFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/OrchestrationTriggerBindingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/OrchestrationTriggerBindingAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/AttributeBinding/OrchestrationTriggerBindingFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/AttributeBinding/OrchestrationTriggerBindingFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/Orchestration/CancellationTokenOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/Orchestration/CancellationTokenOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Functions/Orchestration/OtherBindingsOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Functions/Orchestration/OtherBindingsOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/KnownTypeSymbols.Azure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/KnownTypeSymbols.Azure.cs -------------------------------------------------------------------------------- /src/Analyzers/KnownTypeSymbols.Durable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/KnownTypeSymbols.Durable.cs -------------------------------------------------------------------------------- /src/Analyzers/KnownTypeSymbols.Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/KnownTypeSymbols.Functions.cs -------------------------------------------------------------------------------- /src/Analyzers/KnownTypeSymbols.Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/KnownTypeSymbols.Net.cs -------------------------------------------------------------------------------- /src/Analyzers/KnownTypeSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/KnownTypeSymbols.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/DateTimeOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/DateTimeOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/DateTimeOrchestrationFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/DateTimeOrchestrationFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/DelayOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/DelayOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/DelayOrchestrationFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/DelayOrchestrationFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/EnvironmentOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/EnvironmentOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/GuidOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/GuidOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/GuidOrchestrationFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/GuidOrchestrationFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/IOOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/IOOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/OrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/OrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/OrchestrationContextFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/OrchestrationContextFixer.cs -------------------------------------------------------------------------------- /src/Analyzers/Orchestration/ThreadTaskOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Orchestration/ThreadTaskOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Analyzers/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/Resources.resx -------------------------------------------------------------------------------- /src/Analyzers/RoslynExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Analyzers/RoslynExtensions.cs -------------------------------------------------------------------------------- /src/Client/AzureManaged/Client.AzureManaged.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/AzureManaged/Client.AzureManaged.csproj -------------------------------------------------------------------------------- /src/Client/AzureManaged/DurableTaskSchedulerClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/AzureManaged/DurableTaskSchedulerClientExtensions.cs -------------------------------------------------------------------------------- /src/Client/AzureManaged/DurableTaskSchedulerClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/AzureManaged/DurableTaskSchedulerClientOptions.cs -------------------------------------------------------------------------------- /src/Client/AzureManaged/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/AzureManaged/RELEASENOTES.md -------------------------------------------------------------------------------- /src/Client/Core/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Client.csproj -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/DefaultDurableTaskClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/DefaultDurableTaskClientBuilder.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/DefaultDurableTaskClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/DefaultDurableTaskClientProvider.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/DurableTaskClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/DurableTaskClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/DurableTaskClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/DurableTaskClientExtensions.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/IDurableTaskClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/IDurableTaskClientBuilder.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/IDurableTaskClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/IDurableTaskClientProvider.cs -------------------------------------------------------------------------------- /src/Client/Core/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Client/Core/DurableTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DurableTaskClient.cs -------------------------------------------------------------------------------- /src/Client/Core/DurableTaskClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/DurableTaskClientOptions.cs -------------------------------------------------------------------------------- /src/Client/Core/Entities/CleanEntityStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Entities/CleanEntityStorage.cs -------------------------------------------------------------------------------- /src/Client/Core/Entities/DurableEntityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Entities/DurableEntityClient.cs -------------------------------------------------------------------------------- /src/Client/Core/Entities/EntityMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Entities/EntityMetadata.cs -------------------------------------------------------------------------------- /src/Client/Core/Entities/EntityMetadataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Entities/EntityMetadataConverter.cs -------------------------------------------------------------------------------- /src/Client/Core/Entities/EntityQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/Entities/EntityQuery.cs -------------------------------------------------------------------------------- /src/Client/Core/OrchestrationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/OrchestrationMetadata.cs -------------------------------------------------------------------------------- /src/Client/Core/OrchestrationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/OrchestrationQuery.cs -------------------------------------------------------------------------------- /src/Client/Core/OrchestrationRuntimeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/OrchestrationRuntimeStatus.cs -------------------------------------------------------------------------------- /src/Client/Core/PurgeInstanceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/PurgeInstanceOptions.cs -------------------------------------------------------------------------------- /src/Client/Core/PurgeInstancesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/PurgeInstancesFilter.cs -------------------------------------------------------------------------------- /src/Client/Core/PurgeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/PurgeResult.cs -------------------------------------------------------------------------------- /src/Client/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/README.md -------------------------------------------------------------------------------- /src/Client/Core/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/RELEASENOTES.md -------------------------------------------------------------------------------- /src/Client/Core/SerializedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/SerializedData.cs -------------------------------------------------------------------------------- /src/Client/Core/TerminateInstanceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Core/TerminateInstanceOptions.cs -------------------------------------------------------------------------------- /src/Client/Grpc/Client.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/Client.Grpc.csproj -------------------------------------------------------------------------------- /src/Client/Grpc/DependencyInjection/DurableTaskClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/DependencyInjection/DurableTaskClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Client/Grpc/GrpcDurableEntityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/GrpcDurableEntityClient.cs -------------------------------------------------------------------------------- /src/Client/Grpc/GrpcDurableTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/GrpcDurableTaskClient.cs -------------------------------------------------------------------------------- /src/Client/Grpc/GrpcDurableTaskClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/GrpcDurableTaskClientOptions.cs -------------------------------------------------------------------------------- /src/Client/Grpc/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/Logs.cs -------------------------------------------------------------------------------- /src/Client/Grpc/ProtoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/ProtoUtils.cs -------------------------------------------------------------------------------- /src/Client/Grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/Grpc/README.md -------------------------------------------------------------------------------- /src/Client/Grpc/RELEASENOTES.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/Client.OrchestrationServiceClientShim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/Client.OrchestrationServiceClientShim.csproj -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/DependencyInjection/DurableTaskClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/DependencyInjection/DurableTaskClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/README.md -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/ShimDurableEntityClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/ShimDurableEntityClient.cs -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/ShimDurableTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/ShimDurableTaskClient.cs -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/ShimDurableTaskClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/ShimDurableTaskClientOptions.cs -------------------------------------------------------------------------------- /src/Client/OrchestrationServiceClientShim/ShimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Client/OrchestrationServiceClientShim/ShimExtensions.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/AzureBlobPayloads.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/AzureBlobPayloads.csproj -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/DependencyInjection/DurableTaskClientBuilderExtensions.AzureBlobPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/DependencyInjection/DurableTaskClientBuilderExtensions.AzureBlobPayloads.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/DependencyInjection/DurableTaskWorkerBuilderExtensions.AzureBlobPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/DependencyInjection/DurableTaskWorkerBuilderExtensions.AzureBlobPayloads.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/DependencyInjection/ServiceCollectionExtensions.AzureBlobPayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/DependencyInjection/ServiceCollectionExtensions.AzureBlobPayloads.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/Interceptors/AzureBlobPayloadsSideCarInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/Interceptors/AzureBlobPayloadsSideCarInterceptor.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/Interceptors/PayloadInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/Interceptors/PayloadInterceptor.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/Options/LargePayloadStorageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/Options/LargePayloadStorageOptions.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/PayloadStore/BlobPayloadStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/PayloadStore/BlobPayloadStore.cs -------------------------------------------------------------------------------- /src/Extensions/AzureBlobPayloads/PayloadStore/PayloadStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Extensions/AzureBlobPayloads/PayloadStore/PayloadStore.cs -------------------------------------------------------------------------------- /src/Generators/AzureFunctions/DurableFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/AzureFunctions/DurableFunction.cs -------------------------------------------------------------------------------- /src/Generators/AzureFunctions/SyntaxNodeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/AzureFunctions/SyntaxNodeUtility.cs -------------------------------------------------------------------------------- /src/Generators/AzureFunctions/TypedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/AzureFunctions/TypedParameter.cs -------------------------------------------------------------------------------- /src/Generators/DurableTaskSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/DurableTaskSourceGenerator.cs -------------------------------------------------------------------------------- /src/Generators/Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/Generators.csproj -------------------------------------------------------------------------------- /src/Generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Generators/README.md -------------------------------------------------------------------------------- /src/Grpc/Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Grpc/Grpc.csproj -------------------------------------------------------------------------------- /src/Grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Grpc/README.md -------------------------------------------------------------------------------- /src/Grpc/RELEASENOTES.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Grpc/orchestrator_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Grpc/orchestrator_service.proto -------------------------------------------------------------------------------- /src/Grpc/refresh-protos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Grpc/refresh-protos.ps1 -------------------------------------------------------------------------------- /src/Grpc/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Grpc/versions.txt -------------------------------------------------------------------------------- /src/InProcessTestHost/DurableTaskTestHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/DurableTaskTestHost.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/InProcessTestHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/InProcessTestHost.csproj -------------------------------------------------------------------------------- /src/InProcessTestHost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/README.md -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/AsyncManualResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/AsyncManualResetEvent.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/GrpcCreateSubOrchestrationAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/GrpcCreateSubOrchestrationAction.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/GrpcOrchestratorExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/GrpcOrchestratorExecutionResult.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/GrpcScheduleTaskOrchestratorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/GrpcScheduleTaskOrchestratorAction.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/GrpcSubOrchestrationInstanceCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/GrpcSubOrchestrationInstanceCreatedEvent.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/ITaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/ITaskExecutor.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/ITrafficSignal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/ITrafficSignal.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/TaskActivityDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/TaskActivityDispatcher.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/TaskHubDispatcherHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/TaskHubDispatcherHost.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/TaskOrchestrationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/TaskOrchestrationDispatcher.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Dispatcher/WorkItemDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Dispatcher/WorkItemDispatcher.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Grpc/ProtobufUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Grpc/ProtobufUtils.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Grpc/TaskHubGrpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Grpc/TaskHubGrpcServer.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Grpc/TaskHubGrpcServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Grpc/TaskHubGrpcServerOptions.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/InMemoryOrchestrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/InMemoryOrchestrationService.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Logs.cs -------------------------------------------------------------------------------- /src/InProcessTestHost/Sidecar/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/InProcessTestHost/Sidecar/Utils.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Client/DefaultScheduleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Client/DefaultScheduleClient.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Client/DefaultScheduledTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Client/DefaultScheduledTaskClient.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Client/ScheduleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Client/ScheduleClient.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Client/ScheduledTaskClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Client/ScheduledTaskClient.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Entity/Schedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Entity/Schedule.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Exception/ScheduleClientValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Exception/ScheduleClientValidationException.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Exception/ScheduleInvalidTransitionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Exception/ScheduleInvalidTransitionException.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Exception/ScheduleNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Exception/ScheduleNotFoundException.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Extension/DurableTaskClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Extension/DurableTaskClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Extension/DurableTaskWorkerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Extension/DurableTaskWorkerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Logging/Logs.Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Logging/Logs.Client.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Logging/Logs.Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Logging/Logs.Entity.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleConfiguration.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleCreationOptions.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleDescription.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleQuery.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleState.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleStatus.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleTransitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleTransitions.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Models/ScheduleUpdateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Models/ScheduleUpdateOptions.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/Orchestrations/ExecuteScheduleOperationOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/Orchestrations/ExecuteScheduleOperationOrchestrator.cs -------------------------------------------------------------------------------- /src/ScheduledTasks/ScheduledTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/ScheduledTasks/ScheduledTasks.csproj -------------------------------------------------------------------------------- /src/Shared/AzureManaged/AccessTokenCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/AzureManaged/AccessTokenCache.cs -------------------------------------------------------------------------------- /src/Shared/AzureManaged/DurableTaskSchedulerConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/AzureManaged/DurableTaskSchedulerConnectionString.cs -------------------------------------------------------------------------------- /src/Shared/AzureManaged/DurableTaskVersionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/AzureManaged/DurableTaskVersionUtil.cs -------------------------------------------------------------------------------- /src/Shared/AzureManaged/GrpcRetryPolicyDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/AzureManaged/GrpcRetryPolicyDefaults.cs -------------------------------------------------------------------------------- /src/Shared/Core/AsyncDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/AsyncDisposable.cs -------------------------------------------------------------------------------- /src/Shared/Core/CSharpLangCompat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/CSharpLangCompat.cs -------------------------------------------------------------------------------- /src/Shared/Core/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/NullableAttributes.cs -------------------------------------------------------------------------------- /src/Shared/Core/RetryPolicyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/RetryPolicyExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Core/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Core/Validation/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/Validation/Check.cs -------------------------------------------------------------------------------- /src/Shared/Core/Validation/Verify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Core/Validation/Verify.cs -------------------------------------------------------------------------------- /src/Shared/DependencyInjection/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/DependencyInjection/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/EntityConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/EntityConversions.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/ProtoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/ProtoUtils.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Tracing/DiagnosticActivityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Tracing/DiagnosticActivityExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Tracing/FieldInfoExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Tracing/FieldInfoExtensionMethods.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Tracing/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Tracing/Schema.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Tracing/TraceActivityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Tracing/TraceActivityConstants.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Tracing/TraceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Tracing/TraceHelper.cs -------------------------------------------------------------------------------- /src/Shared/Grpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Grpc/Usings.cs -------------------------------------------------------------------------------- /src/Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Shared/Shared.csproj -------------------------------------------------------------------------------- /src/Worker/AzureManaged/DurableTaskSchedulerWorkerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/AzureManaged/DurableTaskSchedulerWorkerExtensions.cs -------------------------------------------------------------------------------- /src/Worker/AzureManaged/DurableTaskSchedulerWorkerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/AzureManaged/DurableTaskSchedulerWorkerOptions.cs -------------------------------------------------------------------------------- /src/Worker/AzureManaged/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/AzureManaged/RELEASENOTES.md -------------------------------------------------------------------------------- /src/Worker/AzureManaged/Worker.AzureManaged.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/AzureManaged/Worker.AzureManaged.csproj -------------------------------------------------------------------------------- /src/Worker/Core/DependencyInjection/DefaultDurableTaskWorkerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DependencyInjection/DefaultDurableTaskWorkerBuilder.cs -------------------------------------------------------------------------------- /src/Worker/Core/DependencyInjection/DurableTaskWorkerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DependencyInjection/DurableTaskWorkerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Core/DependencyInjection/IDurableTaskWorkerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DependencyInjection/IDurableTaskWorkerBuilder.cs -------------------------------------------------------------------------------- /src/Worker/Core/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Core/DurableTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DurableTaskFactory.cs -------------------------------------------------------------------------------- /src/Worker/Core/DurableTaskRegistryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DurableTaskRegistryExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Core/DurableTaskWorkerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/DurableTaskWorkerOptions.cs -------------------------------------------------------------------------------- /src/Worker/Core/ExceptionPropertiesProviderAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/ExceptionPropertiesProviderAdapter.cs -------------------------------------------------------------------------------- /src/Worker/Core/ExtendedSessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/ExtendedSessionState.cs -------------------------------------------------------------------------------- /src/Worker/Core/ExtendedSessionsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/ExtendedSessionsCache.cs -------------------------------------------------------------------------------- /src/Worker/Core/Hosting/DurableTaskWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Hosting/DurableTaskWorker.cs -------------------------------------------------------------------------------- /src/Worker/Core/IDurableTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/IDurableTaskFactory.cs -------------------------------------------------------------------------------- /src/Worker/Core/IExceptionPropertiesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/IExceptionPropertiesProvider.cs -------------------------------------------------------------------------------- /src/Worker/Core/IOrchestrationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/IOrchestrationFilter.cs -------------------------------------------------------------------------------- /src/Worker/Core/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Logs.cs -------------------------------------------------------------------------------- /src/Worker/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/README.md -------------------------------------------------------------------------------- /src/Worker/Core/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/RELEASENOTES.md -------------------------------------------------------------------------------- /src/Worker/Core/Shims/DurableTaskShimFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/DurableTaskShimFactory.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/JsonDataConverterShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/JsonDataConverterShim.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/OrchestrationInvocationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/OrchestrationInvocationContext.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskActivityShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskActivityShim.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskEntityShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskEntityShim.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskOrchestrationContextWrapper.EventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskOrchestrationContextWrapper.EventSource.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskOrchestrationContextWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskOrchestrationContextWrapper.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskOrchestrationEntityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskOrchestrationEntityContext.cs -------------------------------------------------------------------------------- /src/Worker/Core/Shims/TaskOrchestrationShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Shims/TaskOrchestrationShim.cs -------------------------------------------------------------------------------- /src/Worker/Core/Worker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Core/Worker.csproj -------------------------------------------------------------------------------- /src/Worker/Grpc/DependencyInjection/DurableTaskWorkerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/DependencyInjection/DurableTaskWorkerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcDurableTaskWorker.Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcDurableTaskWorker.Processor.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcDurableTaskWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcDurableTaskWorker.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcDurableTaskWorkerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcDurableTaskWorkerOptions.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcEntityRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcEntityRunner.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/GrpcOrchestrationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/GrpcOrchestrationRunner.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/Internal/InternalOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/Internal/InternalOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/Logs.cs -------------------------------------------------------------------------------- /src/Worker/Grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/README.md -------------------------------------------------------------------------------- /src/Worker/Grpc/RELEASENOTES.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Worker/Grpc/Worker.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/Worker/Grpc/Worker.Grpc.csproj -------------------------------------------------------------------------------- /src/dirs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/src/dirs.proj -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/Abstractions.Tests/Abstractions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Abstractions.Tests.csproj -------------------------------------------------------------------------------- /test/Abstractions.Tests/Entities/EntityTaskEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Entities/EntityTaskEntityTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/Entities/Mocks/TestEntityOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Entities/Mocks/TestEntityOperation.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/Entities/Mocks/TestEntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Entities/Mocks/TestEntityState.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/Entities/StateTaskEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Entities/StateTaskEntityTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/Entities/TaskEntityHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Entities/TaskEntityHelpersTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/PageableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/PageableTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/TaskActivityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/TaskActivityTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/TaskNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/TaskNameTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/TaskOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/TaskOptionsTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/TaskOrchestrationContextVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/TaskOrchestrationContextVersionTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/TaskOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/TaskOrchestratorTests.cs -------------------------------------------------------------------------------- /test/Abstractions.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Abstractions.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Activities/MatchingInputOutputTypeActivityAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Activities/MatchingInputOutputTypeActivityAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Analyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Analyzers.Tests.csproj -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/AttributeBinding/DurableClientBindingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/AttributeBinding/DurableClientBindingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/AttributeBinding/EntityTriggerBindingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/AttributeBinding/EntityTriggerBindingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/AttributeBinding/MatchingAttributeBindingSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/AttributeBinding/MatchingAttributeBindingSpecificationTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/AttributeBinding/OrchestrationTriggerBindingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/AttributeBinding/OrchestrationTriggerBindingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/Orchestration/CancellationTokenOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/Orchestration/CancellationTokenOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Functions/Orchestration/OtherBindingsOrchestrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Functions/Orchestration/OtherBindingsOrchestrationAnalyzer.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/DateTimeOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/DateTimeOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/DelayOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/DelayOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/EnvironmentOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/EnvironmentOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/GuidOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/GuidOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/IOOrchestrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/IOOrchestrationTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Orchestration/ThreadTaskOrchestrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Orchestration/ThreadTaskOrchestrationAnalyzerTests.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /test/Analyzers.Tests/Verifiers/CSharpAnalyzerVerifier.Durable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Verifiers/CSharpAnalyzerVerifier.Durable.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Verifiers/CSharpAnalyzerVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Verifiers/CSharpAnalyzerVerifier.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Verifiers/CSharpCodeFixVerifier.Durable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Verifiers/CSharpCodeFixVerifier.Durable.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Verifiers/CSharpCodeFixVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Verifiers/CSharpCodeFixVerifier.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Verifiers/References.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Verifiers/References.cs -------------------------------------------------------------------------------- /test/Analyzers.Tests/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Analyzers.Tests/Wrapper.cs -------------------------------------------------------------------------------- /test/Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /test/Benchmarks/DateTimeOrchestrationAnalyzerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Benchmarks/DateTimeOrchestrationAnalyzerBenchmarks.cs -------------------------------------------------------------------------------- /test/Benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /test/Benchmarks/DurableTaskRegistryBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Benchmarks/DurableTaskRegistryBenchmarks.cs -------------------------------------------------------------------------------- /test/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Benchmarks/Program.cs -------------------------------------------------------------------------------- /test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj -------------------------------------------------------------------------------- /test/Client/AzureManaged.Tests/DurableTaskSchedulerClientExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/AzureManaged.Tests/DurableTaskSchedulerClientExtensionsTests.cs -------------------------------------------------------------------------------- /test/Client/AzureManaged.Tests/DurableTaskSchedulerClientOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/AzureManaged.Tests/DurableTaskSchedulerClientOptionsTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/Client.Tests.csproj -------------------------------------------------------------------------------- /test/Client/Core.Tests/DependencyInjection/DefaultDurableTaskClientBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/DependencyInjection/DefaultDurableTaskClientBuilderTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/DependencyInjection/DefaultDurableTaskClientProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/DependencyInjection/DefaultDurableTaskClientProviderTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/DependencyInjection/ServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/DependencyInjection/ServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/Entities/EntityMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/Entities/EntityMetadataTests.cs -------------------------------------------------------------------------------- /test/Client/Core.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Core.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Client/Grpc.Tests/Client.Grpc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Grpc.Tests/Client.Grpc.Tests.csproj -------------------------------------------------------------------------------- /test/Client/Grpc.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Grpc.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Client/Grpc.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/Grpc.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj -------------------------------------------------------------------------------- /test/Client/OrchestrationServiceClientShim.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/OrchestrationServiceClientShim.Tests/DependencyInjection/DurableTaskClientBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Client/OrchestrationServiceClientShim.Tests/ShimDurableEntityClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/OrchestrationServiceClientShim.Tests/ShimDurableEntityClientTests.cs -------------------------------------------------------------------------------- /test/Client/OrchestrationServiceClientShim.Tests/ShimDurableTaskClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/OrchestrationServiceClientShim.Tests/ShimDurableTaskClientTests.cs -------------------------------------------------------------------------------- /test/Client/OrchestrationServiceClientShim.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Client/OrchestrationServiceClientShim.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/Generators.Tests/AzureFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Generators.Tests/AzureFunctionsTests.cs -------------------------------------------------------------------------------- /test/Generators.Tests/ClassBasedSyntaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Generators.Tests/ClassBasedSyntaxTests.cs -------------------------------------------------------------------------------- /test/Generators.Tests/Generators.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Generators.Tests/Generators.Tests.csproj -------------------------------------------------------------------------------- /test/Generators.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /test/Generators.Tests/Utils/CSharpSourceGeneratorVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Generators.Tests/Utils/CSharpSourceGeneratorVerifier.cs -------------------------------------------------------------------------------- /test/Generators.Tests/Utils/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Generators.Tests/Utils/TestHelpers.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/ClassSyntaxIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/ClassSyntaxIntegrationTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/ClassSyntaxTestOrchestration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/ClassSyntaxTestOrchestration.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/ExternalEventStackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/ExternalEventStackTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/GrpcDurableTaskClientIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/GrpcDurableTaskClientIntegrationTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/GrpcSidecarFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/GrpcSidecarFixture.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/IntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/IntegrationTestBase.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/LargePayloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/LargePayloadTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/OrchestrationErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/OrchestrationErrorHandling.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/OrchestrationPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/OrchestrationPatterns.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/PageableIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/PageableIntegrationTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/TracingIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/TracingIntegrationTests.cs -------------------------------------------------------------------------------- /test/Grpc.IntegrationTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Grpc.IntegrationTests/Usings.cs -------------------------------------------------------------------------------- /test/InProcessTestHost.Tests/BasicOrchestrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/InProcessTestHost.Tests/BasicOrchestrationTests.cs -------------------------------------------------------------------------------- /test/InProcessTestHost.Tests/InProcessTestHost.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/InProcessTestHost.Tests/InProcessTestHost.Tests.csproj -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Client/DefaultScheduleClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Client/DefaultScheduleClientTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Client/DefaultScheduledTaskClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Client/DefaultScheduledTaskClientTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Entity/ScheduleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Entity/ScheduleTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Models/ScheduleConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Models/ScheduleConfigurationTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Models/ScheduleCreationOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Models/ScheduleCreationOptionsTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Models/ScheduleStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Models/ScheduleStateTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/Orchestrations/ExecuteScheduleOperationOrchestratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/Orchestrations/ExecuteScheduleOperationOrchestratorTests.cs -------------------------------------------------------------------------------- /test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj -------------------------------------------------------------------------------- /test/Shared/AzureManaged.Tests/AccessTokenCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Shared/AzureManaged.Tests/AccessTokenCacheTests.cs -------------------------------------------------------------------------------- /test/Shared/AzureManaged.Tests/DurableTaskSchedulerConnectionStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Shared/AzureManaged.Tests/DurableTaskSchedulerConnectionStringTests.cs -------------------------------------------------------------------------------- /test/Shared/AzureManaged.Tests/GrpcRetryPolicyDefaultsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Shared/AzureManaged.Tests/GrpcRetryPolicyDefaultsTests.cs -------------------------------------------------------------------------------- /test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj -------------------------------------------------------------------------------- /test/TestHelpers/Logging/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/TestHelpers/Logging/LogEntry.cs -------------------------------------------------------------------------------- /test/TestHelpers/Logging/TestLogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/TestHelpers/Logging/TestLogProvider.cs -------------------------------------------------------------------------------- /test/TestHelpers/Logging/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/TestHelpers/Logging/TestLogger.cs -------------------------------------------------------------------------------- /test/TestHelpers/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/TestHelpers/RandomExtensions.cs -------------------------------------------------------------------------------- /test/TestHelpers/TestHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/TestHelpers/TestHelpers.csproj -------------------------------------------------------------------------------- /test/Worker/AzureManaged.Tests/DurableTaskSchedulerWorkerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/AzureManaged.Tests/DurableTaskSchedulerWorkerExtensionsTests.cs -------------------------------------------------------------------------------- /test/Worker/AzureManaged.Tests/DurableTaskSchedulerWorkerOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/AzureManaged.Tests/DurableTaskSchedulerWorkerOptionsTests.cs -------------------------------------------------------------------------------- /test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj -------------------------------------------------------------------------------- /test/Worker/Core.Tests/DependencyInjection/DefaultDurableTaskWorkerBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/DependencyInjection/DefaultDurableTaskWorkerBuilderTests.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/DependencyInjection/DurableTaskWorkerBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/DependencyInjection/DurableTaskWorkerBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/DependencyInjection/ServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/DependencyInjection/ServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/DurableTaskRegistryTests.Activities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/DurableTaskRegistryTests.Activities.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/DurableTaskRegistryTests.Orchestrators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/DurableTaskRegistryTests.Orchestrators.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/Shims/TaskOrchestrationContextWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/Shims/TaskOrchestrationContextWrapperTests.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Worker/Core.Tests/Worker.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Core.Tests/Worker.Tests.csproj -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/DependencyInjection/DurableTaskBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/DependencyInjection/DurableTaskBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/ExceptionPropertiesProviderRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/ExceptionPropertiesProviderRegistrationTests.cs -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/GrpcOrchestrationRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/GrpcOrchestrationRunnerTests.cs -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/RunBackgroundTaskLoggingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/RunBackgroundTaskLoggingTests.cs -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj -------------------------------------------------------------------------------- /test/Worker/Grpc.Tests/WorkerCapabilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/durabletask-dotnet/HEAD/test/Worker/Grpc.Tests/WorkerCapabilitiesTests.cs --------------------------------------------------------------------------------