├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── policies │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ └── codeQL.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Check-CsprojVulnerabilities.ps1 ├── LICENSE ├── PowerShellWorker.Common.props ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── azure-functions-powershell-worker.sln ├── azure-pipelines-e2e-integration-tests.yml ├── create_new_worker_instructions.md ├── docs ├── cmdlets │ ├── Get-OutputBinding.md │ ├── Push-OutputBinding.md │ └── Trace-PipelineObject.md ├── designs │ ├── PowerShell-AzF-Overall-Design.md │ └── images │ │ ├── ps-data-transformation.png │ │ └── ps-function-execution-flow.png └── durable-experimental-instructions.md ├── eng └── ci │ ├── code-mirror.yml │ ├── official.yml │ ├── public.yml │ └── templates │ ├── build.yml │ └── test.yml ├── examples ├── PSCoreApp │ ├── GetAzureVmHttpTrigger │ │ ├── function.json │ │ └── run.ps1 │ ├── MyHttpTrigger │ │ ├── function.json │ │ └── run.ps1 │ ├── MyHttpTriggerWithModule │ │ ├── function.json │ │ └── run.ps1 │ ├── README.md │ ├── host.json │ ├── local.settings.json │ ├── profile.ps1 │ └── requirements.psd1 └── durable │ ├── DurableApp │ ├── .funcignore │ ├── CustomStatusOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── EscalateApproval │ │ ├── function.json │ │ └── run.ps1 │ ├── FanOutFanInOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── FlakyActivity │ │ ├── function.json │ │ └── run.ps1 │ ├── FunctionChainingOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── FunctionChainingWithRetriesOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── GetJobStatus │ │ ├── function.json │ │ └── run.ps1 │ ├── HttpStart │ │ ├── function.json │ │ └── run.ps1 │ ├── HumanInteractionOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── HumanInteractionStart │ │ ├── function.json │ │ └── run.ps1 │ ├── InstanceManagement │ │ ├── function.json │ │ └── run.ps1 │ ├── MonitorOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── MonitorStart │ │ ├── function.json │ │ └── run.ps1 │ ├── ProcessApproval │ │ ├── function.json │ │ └── run.ps1 │ ├── RequestApproval │ │ ├── function.json │ │ └── run.ps1 │ ├── SayHello │ │ ├── function.json │ │ └── run.ps1 │ ├── SendAlert │ │ ├── function.json │ │ └── run.ps1 │ ├── host.json │ ├── local.settings.json │ ├── profile.ps1 │ ├── proxies.json │ └── requirements.psd1 │ └── LongRunningHttpApp │ ├── .funcignore │ ├── HttpTrigger │ ├── function.json │ └── run.ps1 │ ├── LongRunningActivity │ ├── function.json │ └── run.ps1 │ ├── MyOrchestrator │ ├── function.json │ └── run.ps1 │ ├── extensions.csproj │ ├── host.json │ ├── profile.ps1 │ ├── proxies.json │ └── requirements.psd1 ├── images └── Powershell_black_64.png ├── package ├── Microsoft.Azure.Functions.PowerShellWorker.Package.csproj └── Microsoft.Azure.Functions.PowerShellWorker.nuspec ├── protobuf ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md └── src │ └── proto │ ├── FunctionRpc.proto │ ├── identity │ └── ClaimsIdentityRpc.proto │ └── shared │ └── NullableTypes.proto ├── release_notes.md ├── src ├── AssemblyInfo.cs ├── DependencyManagement │ ├── BackgroundDependencySnapshotContentLogger.cs │ ├── BackgroundDependencySnapshotMaintainer.cs │ ├── DependencyInfo.cs │ ├── DependencyInstallationException.cs │ ├── DependencyManager.cs │ ├── DependencyManagerStorage.cs │ ├── DependencyManifest.cs │ ├── DependencyManifestEntry.cs │ ├── DependencySnapshotFolderNameTools.cs │ ├── DependencySnapshotInstallationMode.cs │ ├── DependencySnapshotInstaller.cs │ ├── DependencySnapshotPurger.cs │ ├── IBackgroundDependencySnapshotContentLogger.cs │ ├── IBackgroundDependencySnapshotMaintainer.cs │ ├── IDependencyManagerStorage.cs │ ├── IDependencySnapshotComparer.cs │ ├── IDependencySnapshotContentLogger.cs │ ├── IDependencySnapshotInstaller.cs │ ├── IDependencySnapshotPurger.cs │ ├── IInstalledDependenciesLocator.cs │ ├── IModuleProvider.cs │ ├── INewerDependencySnapshotDetector.cs │ ├── IPowerShellGallerySearchInvoker.cs │ ├── IWorkerRestarter.cs │ ├── InstalledDependenciesLocator.cs │ ├── ManagedDependenciesPathDetector.cs │ ├── NewerDependencySnapshotDetector.cs │ ├── PowerShellGalleryModuleProvider.cs │ ├── PowerShellGallerySearchInvoker.cs │ ├── PowerShellModuleSnapshotComparer.cs │ ├── PowerShellModuleSnapshotLogger.cs │ ├── PowerShellModuleSnapshotTools.cs │ ├── VersionSpecificationType.cs │ ├── WorkerEnvironment.cs │ └── WorkerRestarter.cs ├── DurableSDK │ ├── Actions │ │ ├── ActionType.cs │ │ ├── CallActivityAction.cs │ │ ├── CallActivityWithRetryAction.cs │ │ ├── CreateDurableTimerAction.cs │ │ ├── ExternalEventAction.cs │ │ └── OrchestrationAction.cs │ ├── ActivityFailureException.cs │ ├── Commands │ │ ├── GetDurableTaskResult.cs │ │ ├── InvokeDurableActivityCommand.cs │ │ ├── SetDurableCustomStatusCommand.cs │ │ ├── SetFunctionInvocationContextCommand.cs │ │ ├── StartDurableExternalEventListenerCommand.cs │ │ ├── StartDurableTimerCommand.cs │ │ ├── StopDurableTimerTaskCommand.cs │ │ └── WaitDurableTaskCommand.cs │ ├── CurrentUtcDateTimeUpdater.cs │ ├── DurableActivityErrorHandler.cs │ ├── DurableTaskHandler.cs │ ├── ExternalInvoker.cs │ ├── HistoryEvent.cs │ ├── HistoryEventType.cs │ ├── IExternalOrchestrationInvoker.cs │ ├── IOrchestrationInvoker.cs │ ├── IPowerShellServices.cs │ ├── OrchestrationActionCollector.cs │ ├── OrchestrationBindingInfo.cs │ ├── OrchestrationContext.cs │ ├── OrchestrationFailureException.cs │ ├── OrchestrationInvoker.cs │ ├── OrchestrationMessage.cs │ ├── OrchestrationVersionExtractor.cs │ ├── PowerShellServices.cs │ ├── RetryOptions.cs │ ├── RetryProcessor.cs │ └── Tasks │ │ ├── ActivityInvocationTask.cs │ │ ├── DurableTask.cs │ │ ├── DurableTimerTask.cs │ │ └── ExternalEventTask.cs ├── DurableWorker │ ├── DurableBindings.cs │ ├── DurableController.cs │ ├── DurableFunctionInfo.cs │ ├── DurableFunctionInfoFactory.cs │ └── DurableFunctionType.cs ├── FunctionInfo.cs ├── FunctionInfoUtilities.cs ├── FunctionLoader.cs ├── FunctionsEnvironmentReloader.cs ├── Logging │ ├── ILogger.cs │ ├── LoggingEventHandler.cs │ └── RpcLogger.cs ├── Messaging │ └── MessagingStream.cs ├── Microsoft.Azure.Functions.PowerShellWorker.csproj ├── Modules │ └── Microsoft.Azure.Functions.PowerShellWorker │ │ ├── Microsoft.Azure.Functions.PowerShellWorker.psd1 │ │ └── Microsoft.Azure.Functions.PowerShellWorker.psm1 ├── OpenTelemetry │ ├── IPowerShellServicesForOpenTelemetry.cs │ ├── OpenTelemetryController.cs │ ├── OpenTelemetryInvocationContext.cs │ └── PowerShellServicesForOpenTelemetry.cs ├── PowerShell │ ├── ErrorAnalysisLogger.cs │ ├── ErrorRecordFormatter.cs │ ├── PowerShellExtensions.cs │ ├── PowerShellManager.cs │ ├── PowerShellManagerPool.cs │ ├── PowerShellModuleDetector.cs │ └── StreamHandler.cs ├── Public │ ├── Commands │ │ ├── GetOutputBindingCommand.cs │ │ ├── PushOutputBindingCommand.cs │ │ └── TracePipelineObjectCommand.cs │ ├── FunctionMetadata.cs │ ├── HttpContext.cs │ ├── RetryContext.cs │ └── TraceContext.cs ├── RequestProcessor.cs ├── Utility │ ├── FunctionInvocationPerformanceStopwatch.cs │ ├── FunctionReturnValueBuilder.cs │ ├── PowerShellWorkerConfiguration.cs │ ├── TypeExtensions.cs │ └── Utils.cs ├── Worker.cs ├── requirements.psd1 ├── resources │ └── PowerShellWorkerStrings.resx └── worker.config.json ├── test ├── E2E │ ├── Azure.Functions.PowerShellWorker.E2E │ │ ├── Azure.Functions.PowerShellWorker.E2E.sln │ │ └── Azure.Functions.PowerShellWorker.E2E │ │ │ ├── Azure.Functions.PowerShellWorker.E2E.csproj │ │ │ ├── Constants.cs │ │ │ ├── CosmosDBEndToEndTests.cs │ │ │ ├── DurableEndToEndTests.cs │ │ │ ├── EventHubsEndToEndTests.cs │ │ │ ├── Fixtures │ │ │ ├── FixtureHelpers.cs │ │ │ └── FunctionAppFixture.cs │ │ │ ├── Helpers │ │ │ ├── CosmosDBHelpers.cs │ │ │ ├── EventHubsHelpers.cs │ │ │ └── StorageHelpers.cs │ │ │ ├── HttpEndToEndTests.cs │ │ │ ├── ManagedDependenciesEndToEndTests.cs │ │ │ ├── StorageEndToEndTests.cs │ │ │ └── Utilities.cs │ ├── Start-E2ENightlyTest.ps1 │ ├── Start-E2ETest.ps1 │ └── TestFunctionApp │ │ ├── CosmosDBTriggerAndOutput │ │ ├── function.json │ │ └── run.ps1 │ │ ├── CurrentUtcDateTimeClient │ │ ├── function.json │ │ └── run.ps1 │ │ ├── CurrentUtcDateTimeOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableActivity │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableActivityFlaky │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableActivityWithException │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableActivityWritesToQueue │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableClient │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableClientLegacyNames │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableClientOrchContextProperties │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableClientTerminating │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorAccessContextProps │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorComplexRaiseEvent │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorGetTaskResult │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorLegacyNames │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorRaiseEvent │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorWithException │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableOrchestratorWriteToQueue │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableTimerClient │ │ ├── function.json │ │ └── run.ps1 │ │ ├── DurableTimerOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ │ ├── EventHubTriggerAndOutputObject │ │ ├── function.json │ │ └── run.ps1 │ │ ├── EventHubTriggerAndOutputString │ │ ├── function.json │ │ └── run.ps1 │ │ ├── EventHubVerifyOutputObject │ │ ├── function.json │ │ └── run.ps1 │ │ ├── EventHubVerifyOutputString │ │ ├── function.json │ │ └── run.ps1 │ │ ├── ExternalEventClient │ │ ├── function.json │ │ └── run.ps1 │ │ ├── ExternalEventOrchestrator │ │ ├── function.json │ │ └── run.ps1 │ │ ├── HttpTrigger │ │ ├── function.json │ │ └── run.ps1 │ │ ├── HttpTriggerThrows │ │ ├── function.json │ │ └── run.ps1 │ │ ├── HttpTriggerWithMetadata │ │ ├── function.json │ │ └── run.ps1 │ │ ├── QueueTriggerAndOutput │ │ ├── function.json │ │ └── run.ps1 │ │ ├── UsingManagedDependencies │ │ ├── function.json │ │ └── run.ps1 │ │ ├── extensions.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ └── requirements.psd1 └── Unit │ ├── DependencyManagement │ ├── BackgroundDependencySnapshotMaintainerTests.cs │ ├── DependencyManagementTests.cs │ ├── DependencyManagerTests.cs │ ├── DependencyManifestTests.cs │ ├── DependencySnapshotFolderNameToolsTests.cs │ ├── DependencySnapshotInstallerTests.cs │ ├── DependencySnapshotPurgerTests.cs │ ├── InstalledDependenciesLocatorTests.cs │ ├── ManagedDependenciesPathDetectorTests.cs │ ├── NewerDependencySnapshotDetectorTests.cs │ ├── PowerShellGalleryModuleProviderTests.cs │ ├── PowerShellModuleSnapshotComparerTests.cs │ └── TestScripts │ │ ├── BasicRequirements │ │ └── requirements.psd1 │ │ ├── EmptyHashtableRequirement │ │ └── requirements.psd1 │ │ ├── InvalidRequirementsFormat │ │ └── requirements.psd1 │ │ ├── ModuleNameNotSuportedRequirements │ │ └── requirements.psd1 │ │ └── NoHashtableRequirements │ │ └── requirements.psd1 │ ├── Durable │ ├── ActivityInvocationTaskTests.cs │ ├── CallActivityWithRetryActionTests.cs │ ├── CurrentUtcDateTimeTests.cs │ ├── DurableActivityErrorHandlerTests.cs │ ├── DurableControllerTests.cs │ ├── DurableFunctionInfoFactoryTests.cs │ ├── DurableTaskHandlerTests.cs │ ├── DurableTestUtilities.cs │ ├── DurableTimerTaskTests.cs │ ├── OrchestrationActionCollectorTests.cs │ ├── OrchestrationFailureExceptionTests.cs │ ├── OrchestrationInvokerTests.cs │ ├── OrchestrationVersionExtractorTests.cs │ └── RetryProcessorTests.cs │ ├── Function │ ├── FunctionLoaderTests.cs │ ├── FunctionsEnvironmentReloaderTests.cs │ └── TestScripts │ │ ├── BasicFuncScript.ps1 │ │ ├── BasicFuncScriptWithRetryContext.ps1 │ │ ├── BasicFuncScriptWithTriggerMetadata.ps1 │ │ ├── FuncHasNoParams.ps1 │ │ ├── FuncWithEntryPoint.psm1 │ │ ├── FuncWithEntryPointAndTriggerMetadataAndRetryContext.psm1 │ │ ├── FuncWithMultiEntryPoints.psm1 │ │ ├── FuncWithParseError.ps1 │ │ └── FuncWithRequires.ps1 │ ├── Logging │ └── ConsoleLogger.cs │ ├── Microsoft.Azure.Functions.PowerShellWorker.Test.csproj │ ├── Modules │ └── HelperModuleTests.cs │ ├── OpenTelemetry │ └── OpenTelemetryControllerTests.cs │ ├── PowerShell │ ├── ErrorAnalysisLoggerTests.cs │ ├── ErrorRecordFormatterTests.cs │ ├── PowerShellExtensionsTests.cs │ ├── PowerShellManagerTests.cs │ └── TestScripts │ │ ├── ProfileBasic │ │ └── profile.ps1 │ │ ├── ProfileWithNonTerminatingError │ │ └── Profile.ps1 │ │ ├── ProfileWithTerminatingError │ │ └── profile.ps1 │ │ ├── testBasicFunction.ps1 │ │ ├── testBasicFunctionSpecialVariables.ps1 │ │ ├── testBasicFunctionWithRequires.ps1 │ │ ├── testBasicFunctionWithTriggerMetadataAndRetryContext.ps1 │ │ ├── testFunctionCleanup.ps1 │ │ ├── testFunctionWithEntryPoint.psm1 │ │ └── testFunctionWithOutput.ps1 │ ├── Utility │ ├── FunctionReturnValueBuilderTests.cs │ └── TypeExtensionsTests.cs │ └── xunit.runner.json ├── tools ├── helper.psm1 └── protobuf.tools.csproj └── upgrade_ps_sdk_instructions.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.github/workflows/codeQL.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Check-CsprojVulnerabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/Check-CsprojVulnerabilities.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellWorker.Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/PowerShellWorker.Common.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /azure-functions-powershell-worker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/azure-functions-powershell-worker.sln -------------------------------------------------------------------------------- /azure-pipelines-e2e-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/azure-pipelines-e2e-integration-tests.yml -------------------------------------------------------------------------------- /create_new_worker_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/create_new_worker_instructions.md -------------------------------------------------------------------------------- /docs/cmdlets/Get-OutputBinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/cmdlets/Get-OutputBinding.md -------------------------------------------------------------------------------- /docs/cmdlets/Push-OutputBinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/cmdlets/Push-OutputBinding.md -------------------------------------------------------------------------------- /docs/cmdlets/Trace-PipelineObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/cmdlets/Trace-PipelineObject.md -------------------------------------------------------------------------------- /docs/designs/PowerShell-AzF-Overall-Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/designs/PowerShell-AzF-Overall-Design.md -------------------------------------------------------------------------------- /docs/designs/images/ps-data-transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/designs/images/ps-data-transformation.png -------------------------------------------------------------------------------- /docs/designs/images/ps-function-execution-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/designs/images/ps-function-execution-flow.png -------------------------------------------------------------------------------- /docs/durable-experimental-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/docs/durable-experimental-instructions.md -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/eng/ci/official.yml -------------------------------------------------------------------------------- /eng/ci/public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/eng/ci/public.yml -------------------------------------------------------------------------------- /eng/ci/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/eng/ci/templates/build.yml -------------------------------------------------------------------------------- /eng/ci/templates/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/eng/ci/templates/test.yml -------------------------------------------------------------------------------- /examples/PSCoreApp/GetAzureVmHttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/GetAzureVmHttpTrigger/function.json -------------------------------------------------------------------------------- /examples/PSCoreApp/GetAzureVmHttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/GetAzureVmHttpTrigger/run.ps1 -------------------------------------------------------------------------------- /examples/PSCoreApp/MyHttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/MyHttpTrigger/function.json -------------------------------------------------------------------------------- /examples/PSCoreApp/MyHttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/MyHttpTrigger/run.ps1 -------------------------------------------------------------------------------- /examples/PSCoreApp/MyHttpTriggerWithModule/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/MyHttpTriggerWithModule/function.json -------------------------------------------------------------------------------- /examples/PSCoreApp/MyHttpTriggerWithModule/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/MyHttpTriggerWithModule/run.ps1 -------------------------------------------------------------------------------- /examples/PSCoreApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/README.md -------------------------------------------------------------------------------- /examples/PSCoreApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/host.json -------------------------------------------------------------------------------- /examples/PSCoreApp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/local.settings.json -------------------------------------------------------------------------------- /examples/PSCoreApp/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/profile.ps1 -------------------------------------------------------------------------------- /examples/PSCoreApp/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/PSCoreApp/requirements.psd1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | -------------------------------------------------------------------------------- /examples/durable/DurableApp/CustomStatusOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/CustomStatusOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/CustomStatusOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/CustomStatusOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/EscalateApproval/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/EscalateApproval/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/EscalateApproval/run.ps1: -------------------------------------------------------------------------------- 1 | param($name) 2 | 3 | "Approval escalated." 4 | -------------------------------------------------------------------------------- /examples/durable/DurableApp/FanOutFanInOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FanOutFanInOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/FanOutFanInOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FanOutFanInOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/FlakyActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FlakyActivity/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/FlakyActivity/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FlakyActivity/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/FunctionChainingOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FunctionChainingOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/FunctionChainingOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FunctionChainingOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/FunctionChainingWithRetriesOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FunctionChainingWithRetriesOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/FunctionChainingWithRetriesOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/FunctionChainingWithRetriesOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/GetJobStatus/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/GetJobStatus/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/GetJobStatus/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/GetJobStatus/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/HttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HttpStart/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/HttpStart/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HttpStart/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/HumanInteractionOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HumanInteractionOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/HumanInteractionOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HumanInteractionOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/HumanInteractionStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HumanInteractionStart/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/HumanInteractionStart/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/HumanInteractionStart/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/InstanceManagement/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/InstanceManagement/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/InstanceManagement/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/InstanceManagement/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/MonitorOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/MonitorOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/MonitorOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/MonitorOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/MonitorStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/MonitorStart/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/MonitorStart/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/MonitorStart/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/ProcessApproval/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/ProcessApproval/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/ProcessApproval/run.ps1: -------------------------------------------------------------------------------- 1 | param($name) 2 | 3 | "Approval processed." 4 | -------------------------------------------------------------------------------- /examples/durable/DurableApp/RequestApproval/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/RequestApproval/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/RequestApproval/run.ps1: -------------------------------------------------------------------------------- 1 | param($name) 2 | 3 | "Approval requested." 4 | -------------------------------------------------------------------------------- /examples/durable/DurableApp/SayHello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/SayHello/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/SayHello/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/SayHello/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/SendAlert/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/SendAlert/function.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/SendAlert/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/SendAlert/run.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/host.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/local.settings.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/profile.ps1 -------------------------------------------------------------------------------- /examples/durable/DurableApp/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/proxies.json -------------------------------------------------------------------------------- /examples/durable/DurableApp/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/DurableApp/requirements.psd1 -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/HttpTrigger/function.json -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/HttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/HttpTrigger/run.ps1 -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/LongRunningActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/LongRunningActivity/function.json -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/LongRunningActivity/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/LongRunningActivity/run.ps1 -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/MyOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/MyOrchestrator/function.json -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/MyOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/MyOrchestrator/run.ps1 -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/extensions.csproj -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/host.json -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/profile.ps1 -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/proxies.json -------------------------------------------------------------------------------- /examples/durable/LongRunningHttpApp/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/examples/durable/LongRunningHttpApp/requirements.psd1 -------------------------------------------------------------------------------- /images/Powershell_black_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/images/Powershell_black_64.png -------------------------------------------------------------------------------- /package/Microsoft.Azure.Functions.PowerShellWorker.Package.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/package/Microsoft.Azure.Functions.PowerShellWorker.Package.csproj -------------------------------------------------------------------------------- /package/Microsoft.Azure.Functions.PowerShellWorker.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/package/Microsoft.Azure.Functions.PowerShellWorker.nuspec -------------------------------------------------------------------------------- /protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/.gitignore -------------------------------------------------------------------------------- /protobuf/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/CODEOWNERS -------------------------------------------------------------------------------- /protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/LICENSE -------------------------------------------------------------------------------- /protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/README.md -------------------------------------------------------------------------------- /protobuf/src/proto/FunctionRpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/src/proto/FunctionRpc.proto -------------------------------------------------------------------------------- /protobuf/src/proto/identity/ClaimsIdentityRpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/src/proto/identity/ClaimsIdentityRpc.proto -------------------------------------------------------------------------------- /protobuf/src/proto/shared/NullableTypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/protobuf/src/proto/shared/NullableTypes.proto -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- 1 | * [Durable] Add Version property to $Context 2 | -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DependencyManagement/BackgroundDependencySnapshotContentLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/BackgroundDependencySnapshotContentLogger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/BackgroundDependencySnapshotMaintainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/BackgroundDependencySnapshotMaintainer.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyInfo.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyInstallationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyInstallationException.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyManager.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyManagerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyManagerStorage.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyManifest.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencyManifestEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencyManifestEntry.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencySnapshotFolderNameTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencySnapshotFolderNameTools.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencySnapshotInstallationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencySnapshotInstallationMode.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencySnapshotInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencySnapshotInstaller.cs -------------------------------------------------------------------------------- /src/DependencyManagement/DependencySnapshotPurger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/DependencySnapshotPurger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IBackgroundDependencySnapshotContentLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IBackgroundDependencySnapshotContentLogger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IBackgroundDependencySnapshotMaintainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IBackgroundDependencySnapshotMaintainer.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IDependencyManagerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IDependencyManagerStorage.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IDependencySnapshotComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IDependencySnapshotComparer.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IDependencySnapshotContentLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IDependencySnapshotContentLogger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IDependencySnapshotInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IDependencySnapshotInstaller.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IDependencySnapshotPurger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IDependencySnapshotPurger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IInstalledDependenciesLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IInstalledDependenciesLocator.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IModuleProvider.cs -------------------------------------------------------------------------------- /src/DependencyManagement/INewerDependencySnapshotDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/INewerDependencySnapshotDetector.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IPowerShellGallerySearchInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IPowerShellGallerySearchInvoker.cs -------------------------------------------------------------------------------- /src/DependencyManagement/IWorkerRestarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/IWorkerRestarter.cs -------------------------------------------------------------------------------- /src/DependencyManagement/InstalledDependenciesLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/InstalledDependenciesLocator.cs -------------------------------------------------------------------------------- /src/DependencyManagement/ManagedDependenciesPathDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/ManagedDependenciesPathDetector.cs -------------------------------------------------------------------------------- /src/DependencyManagement/NewerDependencySnapshotDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/NewerDependencySnapshotDetector.cs -------------------------------------------------------------------------------- /src/DependencyManagement/PowerShellGalleryModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/PowerShellGalleryModuleProvider.cs -------------------------------------------------------------------------------- /src/DependencyManagement/PowerShellGallerySearchInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/PowerShellGallerySearchInvoker.cs -------------------------------------------------------------------------------- /src/DependencyManagement/PowerShellModuleSnapshotComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/PowerShellModuleSnapshotComparer.cs -------------------------------------------------------------------------------- /src/DependencyManagement/PowerShellModuleSnapshotLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/PowerShellModuleSnapshotLogger.cs -------------------------------------------------------------------------------- /src/DependencyManagement/PowerShellModuleSnapshotTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/PowerShellModuleSnapshotTools.cs -------------------------------------------------------------------------------- /src/DependencyManagement/VersionSpecificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/VersionSpecificationType.cs -------------------------------------------------------------------------------- /src/DependencyManagement/WorkerEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/WorkerEnvironment.cs -------------------------------------------------------------------------------- /src/DependencyManagement/WorkerRestarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DependencyManagement/WorkerRestarter.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/ActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/ActionType.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/CallActivityAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/CallActivityAction.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/CallActivityWithRetryAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/CallActivityWithRetryAction.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/CreateDurableTimerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/CreateDurableTimerAction.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/ExternalEventAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/ExternalEventAction.cs -------------------------------------------------------------------------------- /src/DurableSDK/Actions/OrchestrationAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Actions/OrchestrationAction.cs -------------------------------------------------------------------------------- /src/DurableSDK/ActivityFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/ActivityFailureException.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/GetDurableTaskResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/GetDurableTaskResult.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/InvokeDurableActivityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/InvokeDurableActivityCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/SetDurableCustomStatusCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/SetDurableCustomStatusCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/SetFunctionInvocationContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/SetFunctionInvocationContextCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/StartDurableExternalEventListenerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/StartDurableExternalEventListenerCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/StartDurableTimerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/StartDurableTimerCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/StopDurableTimerTaskCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/StopDurableTimerTaskCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/Commands/WaitDurableTaskCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Commands/WaitDurableTaskCommand.cs -------------------------------------------------------------------------------- /src/DurableSDK/CurrentUtcDateTimeUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/CurrentUtcDateTimeUpdater.cs -------------------------------------------------------------------------------- /src/DurableSDK/DurableActivityErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/DurableActivityErrorHandler.cs -------------------------------------------------------------------------------- /src/DurableSDK/DurableTaskHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/DurableTaskHandler.cs -------------------------------------------------------------------------------- /src/DurableSDK/ExternalInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/ExternalInvoker.cs -------------------------------------------------------------------------------- /src/DurableSDK/HistoryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/HistoryEvent.cs -------------------------------------------------------------------------------- /src/DurableSDK/HistoryEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/HistoryEventType.cs -------------------------------------------------------------------------------- /src/DurableSDK/IExternalOrchestrationInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/IExternalOrchestrationInvoker.cs -------------------------------------------------------------------------------- /src/DurableSDK/IOrchestrationInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/IOrchestrationInvoker.cs -------------------------------------------------------------------------------- /src/DurableSDK/IPowerShellServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/IPowerShellServices.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationActionCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationActionCollector.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationBindingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationBindingInfo.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationContext.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationFailureException.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationInvoker.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationMessage.cs -------------------------------------------------------------------------------- /src/DurableSDK/OrchestrationVersionExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/OrchestrationVersionExtractor.cs -------------------------------------------------------------------------------- /src/DurableSDK/PowerShellServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/PowerShellServices.cs -------------------------------------------------------------------------------- /src/DurableSDK/RetryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/RetryOptions.cs -------------------------------------------------------------------------------- /src/DurableSDK/RetryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/RetryProcessor.cs -------------------------------------------------------------------------------- /src/DurableSDK/Tasks/ActivityInvocationTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Tasks/ActivityInvocationTask.cs -------------------------------------------------------------------------------- /src/DurableSDK/Tasks/DurableTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Tasks/DurableTask.cs -------------------------------------------------------------------------------- /src/DurableSDK/Tasks/DurableTimerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Tasks/DurableTimerTask.cs -------------------------------------------------------------------------------- /src/DurableSDK/Tasks/ExternalEventTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableSDK/Tasks/ExternalEventTask.cs -------------------------------------------------------------------------------- /src/DurableWorker/DurableBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableWorker/DurableBindings.cs -------------------------------------------------------------------------------- /src/DurableWorker/DurableController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableWorker/DurableController.cs -------------------------------------------------------------------------------- /src/DurableWorker/DurableFunctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableWorker/DurableFunctionInfo.cs -------------------------------------------------------------------------------- /src/DurableWorker/DurableFunctionInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableWorker/DurableFunctionInfoFactory.cs -------------------------------------------------------------------------------- /src/DurableWorker/DurableFunctionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/DurableWorker/DurableFunctionType.cs -------------------------------------------------------------------------------- /src/FunctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/FunctionInfo.cs -------------------------------------------------------------------------------- /src/FunctionInfoUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/FunctionInfoUtilities.cs -------------------------------------------------------------------------------- /src/FunctionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/FunctionLoader.cs -------------------------------------------------------------------------------- /src/FunctionsEnvironmentReloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/FunctionsEnvironmentReloader.cs -------------------------------------------------------------------------------- /src/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Logging/LoggingEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Logging/LoggingEventHandler.cs -------------------------------------------------------------------------------- /src/Logging/RpcLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Logging/RpcLogger.cs -------------------------------------------------------------------------------- /src/Messaging/MessagingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Messaging/MessagingStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.Functions.PowerShellWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Microsoft.Azure.Functions.PowerShellWorker.csproj -------------------------------------------------------------------------------- /src/Modules/Microsoft.Azure.Functions.PowerShellWorker/Microsoft.Azure.Functions.PowerShellWorker.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Modules/Microsoft.Azure.Functions.PowerShellWorker/Microsoft.Azure.Functions.PowerShellWorker.psd1 -------------------------------------------------------------------------------- /src/Modules/Microsoft.Azure.Functions.PowerShellWorker/Microsoft.Azure.Functions.PowerShellWorker.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Modules/Microsoft.Azure.Functions.PowerShellWorker/Microsoft.Azure.Functions.PowerShellWorker.psm1 -------------------------------------------------------------------------------- /src/OpenTelemetry/IPowerShellServicesForOpenTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/OpenTelemetry/IPowerShellServicesForOpenTelemetry.cs -------------------------------------------------------------------------------- /src/OpenTelemetry/OpenTelemetryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/OpenTelemetry/OpenTelemetryController.cs -------------------------------------------------------------------------------- /src/OpenTelemetry/OpenTelemetryInvocationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/OpenTelemetry/OpenTelemetryInvocationContext.cs -------------------------------------------------------------------------------- /src/OpenTelemetry/PowerShellServicesForOpenTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/OpenTelemetry/PowerShellServicesForOpenTelemetry.cs -------------------------------------------------------------------------------- /src/PowerShell/ErrorAnalysisLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/ErrorAnalysisLogger.cs -------------------------------------------------------------------------------- /src/PowerShell/ErrorRecordFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/ErrorRecordFormatter.cs -------------------------------------------------------------------------------- /src/PowerShell/PowerShellExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/PowerShellExtensions.cs -------------------------------------------------------------------------------- /src/PowerShell/PowerShellManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/PowerShellManager.cs -------------------------------------------------------------------------------- /src/PowerShell/PowerShellManagerPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/PowerShellManagerPool.cs -------------------------------------------------------------------------------- /src/PowerShell/PowerShellModuleDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/PowerShellModuleDetector.cs -------------------------------------------------------------------------------- /src/PowerShell/StreamHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/PowerShell/StreamHandler.cs -------------------------------------------------------------------------------- /src/Public/Commands/GetOutputBindingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/Commands/GetOutputBindingCommand.cs -------------------------------------------------------------------------------- /src/Public/Commands/PushOutputBindingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/Commands/PushOutputBindingCommand.cs -------------------------------------------------------------------------------- /src/Public/Commands/TracePipelineObjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/Commands/TracePipelineObjectCommand.cs -------------------------------------------------------------------------------- /src/Public/FunctionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/FunctionMetadata.cs -------------------------------------------------------------------------------- /src/Public/HttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/HttpContext.cs -------------------------------------------------------------------------------- /src/Public/RetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/RetryContext.cs -------------------------------------------------------------------------------- /src/Public/TraceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Public/TraceContext.cs -------------------------------------------------------------------------------- /src/RequestProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/RequestProcessor.cs -------------------------------------------------------------------------------- /src/Utility/FunctionInvocationPerformanceStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Utility/FunctionInvocationPerformanceStopwatch.cs -------------------------------------------------------------------------------- /src/Utility/FunctionReturnValueBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Utility/FunctionReturnValueBuilder.cs -------------------------------------------------------------------------------- /src/Utility/PowerShellWorkerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Utility/PowerShellWorkerConfiguration.cs -------------------------------------------------------------------------------- /src/Utility/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Utility/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Utility/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Utility/Utils.cs -------------------------------------------------------------------------------- /src/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/Worker.cs -------------------------------------------------------------------------------- /src/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/requirements.psd1 -------------------------------------------------------------------------------- /src/resources/PowerShellWorkerStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/resources/PowerShellWorkerStrings.resx -------------------------------------------------------------------------------- /src/worker.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/src/worker.config.json -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E.sln -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E.csproj -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Constants.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/CosmosDBEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/CosmosDBEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/DurableEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/DurableEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/EventHubsEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/EventHubsEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Fixtures/FixtureHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Fixtures/FixtureHelpers.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Fixtures/FunctionAppFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Fixtures/FunctionAppFixture.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/CosmosDBHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/CosmosDBHelpers.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/EventHubsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/EventHubsHelpers.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/StorageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Helpers/StorageHelpers.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/HttpEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/HttpEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/ManagedDependenciesEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/ManagedDependenciesEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/StorageEndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/StorageEndToEndTests.cs -------------------------------------------------------------------------------- /test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Azure.Functions.PowerShellWorker.E2E/Azure.Functions.PowerShellWorker.E2E/Utilities.cs -------------------------------------------------------------------------------- /test/E2E/Start-E2ENightlyTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Start-E2ENightlyTest.ps1 -------------------------------------------------------------------------------- /test/E2E/Start-E2ETest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/Start-E2ETest.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CosmosDBTriggerAndOutput/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CosmosDBTriggerAndOutput/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CosmosDBTriggerAndOutput/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CosmosDBTriggerAndOutput/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CurrentUtcDateTimeClient/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CurrentUtcDateTimeClient/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CurrentUtcDateTimeClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CurrentUtcDateTimeClient/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CurrentUtcDateTimeOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CurrentUtcDateTimeOrchestrator/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/CurrentUtcDateTimeOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/CurrentUtcDateTimeOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivity/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivity/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivity/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivity/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityFlaky/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityFlaky/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityFlaky/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityFlaky/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityWithException/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityWithException/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityWithException/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityWithException/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityWritesToQueue/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityWritesToQueue/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableActivityWritesToQueue/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableActivityWritesToQueue/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClient/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClient/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClient/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientLegacyNames/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientLegacyNames/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientLegacyNames/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientLegacyNames/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientOrchContextProperties/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientOrchContextProperties/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientOrchContextProperties/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientOrchContextProperties/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientTerminating/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientTerminating/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableClientTerminating/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableClientTerminating/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestrator/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorAccessContextProps/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorAccessContextProps/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorAccessContextProps/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorAccessContextProps/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorComplexRaiseEvent/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorComplexRaiseEvent/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorComplexRaiseEvent/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorComplexRaiseEvent/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorGetTaskResult/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorGetTaskResult/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorGetTaskResult/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorGetTaskResult/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorLegacyNames/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorLegacyNames/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorLegacyNames/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorLegacyNames/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorRaiseEvent/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorRaiseEvent/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorRaiseEvent/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorRaiseEvent/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorWithException/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorWithException/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorWithException/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorWithException/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorWriteToQueue/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorWriteToQueue/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableOrchestratorWriteToQueue/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableOrchestratorWriteToQueue/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableTimerClient/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableTimerClient/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableTimerClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableTimerClient/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableTimerOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableTimerOrchestrator/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/DurableTimerOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/DurableTimerOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubTriggerAndOutputObject/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubTriggerAndOutputObject/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubTriggerAndOutputObject/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubTriggerAndOutputObject/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubTriggerAndOutputString/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubTriggerAndOutputString/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubTriggerAndOutputString/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubTriggerAndOutputString/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubVerifyOutputObject/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubVerifyOutputObject/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubVerifyOutputObject/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubVerifyOutputObject/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubVerifyOutputString/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubVerifyOutputString/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/EventHubVerifyOutputString/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/EventHubVerifyOutputString/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/ExternalEventClient/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/ExternalEventClient/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/ExternalEventClient/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/ExternalEventClient/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/ExternalEventOrchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/ExternalEventOrchestrator/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/ExternalEventOrchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/ExternalEventOrchestrator/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTrigger/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTrigger/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTriggerThrows/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTriggerThrows/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTriggerThrows/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTriggerThrows/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTriggerWithMetadata/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTriggerWithMetadata/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/HttpTriggerWithMetadata/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/HttpTriggerWithMetadata/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/QueueTriggerAndOutput/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/QueueTriggerAndOutput/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/QueueTriggerAndOutput/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/QueueTriggerAndOutput/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/UsingManagedDependencies/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/UsingManagedDependencies/function.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/UsingManagedDependencies/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/UsingManagedDependencies/run.ps1 -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/extensions.csproj -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/host.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/E2E/TestFunctionApp/local.settings.json -------------------------------------------------------------------------------- /test/E2E/TestFunctionApp/requirements.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | 'Az.Accounts' = '1.*' 3 | } 4 | -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/BackgroundDependencySnapshotMaintainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/BackgroundDependencySnapshotMaintainerTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencyManagementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencyManagementTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencyManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencyManagerTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencyManifestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencyManifestTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencySnapshotFolderNameToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencySnapshotFolderNameToolsTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencySnapshotInstallerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencySnapshotInstallerTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/DependencySnapshotPurgerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/DependencySnapshotPurgerTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/InstalledDependenciesLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/InstalledDependenciesLocatorTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/ManagedDependenciesPathDetectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/ManagedDependenciesPathDetectorTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/NewerDependencySnapshotDetectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/NewerDependencySnapshotDetectorTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/PowerShellGalleryModuleProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/PowerShellGalleryModuleProviderTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/PowerShellModuleSnapshotComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/PowerShellModuleSnapshotComparerTests.cs -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/TestScripts/BasicRequirements/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/TestScripts/BasicRequirements/requirements.psd1 -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/TestScripts/EmptyHashtableRequirement/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/TestScripts/EmptyHashtableRequirement/requirements.psd1 -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/TestScripts/InvalidRequirementsFormat/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/TestScripts/InvalidRequirementsFormat/requirements.psd1 -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/TestScripts/ModuleNameNotSuportedRequirements/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/TestScripts/ModuleNameNotSuportedRequirements/requirements.psd1 -------------------------------------------------------------------------------- /test/Unit/DependencyManagement/TestScripts/NoHashtableRequirements/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/DependencyManagement/TestScripts/NoHashtableRequirements/requirements.psd1 -------------------------------------------------------------------------------- /test/Unit/Durable/ActivityInvocationTaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/ActivityInvocationTaskTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/CallActivityWithRetryActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/CallActivityWithRetryActionTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/CurrentUtcDateTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/CurrentUtcDateTimeTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableActivityErrorHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableActivityErrorHandlerTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableControllerTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableFunctionInfoFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableFunctionInfoFactoryTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableTaskHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableTaskHandlerTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableTestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableTestUtilities.cs -------------------------------------------------------------------------------- /test/Unit/Durable/DurableTimerTaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/DurableTimerTaskTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/OrchestrationActionCollectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/OrchestrationActionCollectorTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/OrchestrationFailureExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/OrchestrationFailureExceptionTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/OrchestrationInvokerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/OrchestrationInvokerTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/OrchestrationVersionExtractorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/OrchestrationVersionExtractorTests.cs -------------------------------------------------------------------------------- /test/Unit/Durable/RetryProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Durable/RetryProcessorTests.cs -------------------------------------------------------------------------------- /test/Unit/Function/FunctionLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/FunctionLoaderTests.cs -------------------------------------------------------------------------------- /test/Unit/Function/FunctionsEnvironmentReloaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/FunctionsEnvironmentReloaderTests.cs -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/BasicFuncScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/BasicFuncScript.ps1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/BasicFuncScriptWithRetryContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/BasicFuncScriptWithRetryContext.ps1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/BasicFuncScriptWithTriggerMetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/BasicFuncScriptWithTriggerMetadata.ps1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncHasNoParams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncHasNoParams.ps1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncWithEntryPoint.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncWithEntryPoint.psm1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncWithEntryPointAndTriggerMetadataAndRetryContext.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncWithEntryPointAndTriggerMetadataAndRetryContext.psm1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncWithMultiEntryPoints.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncWithMultiEntryPoints.psm1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncWithParseError.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncWithParseError.ps1 -------------------------------------------------------------------------------- /test/Unit/Function/TestScripts/FuncWithRequires.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Function/TestScripts/FuncWithRequires.ps1 -------------------------------------------------------------------------------- /test/Unit/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Microsoft.Azure.Functions.PowerShellWorker.Test.csproj -------------------------------------------------------------------------------- /test/Unit/Modules/HelperModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Modules/HelperModuleTests.cs -------------------------------------------------------------------------------- /test/Unit/OpenTelemetry/OpenTelemetryControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/OpenTelemetry/OpenTelemetryControllerTests.cs -------------------------------------------------------------------------------- /test/Unit/PowerShell/ErrorAnalysisLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/ErrorAnalysisLoggerTests.cs -------------------------------------------------------------------------------- /test/Unit/PowerShell/ErrorRecordFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/ErrorRecordFormatterTests.cs -------------------------------------------------------------------------------- /test/Unit/PowerShell/PowerShellExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/PowerShellExtensionsTests.cs -------------------------------------------------------------------------------- /test/Unit/PowerShell/PowerShellManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/PowerShellManagerTests.cs -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/ProfileBasic/profile.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello PROFILE" 2 | -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/ProfileWithNonTerminatingError/Profile.ps1: -------------------------------------------------------------------------------- 1 | Write-Error "help me!" 2 | -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/ProfileWithTerminatingError/profile.ps1: -------------------------------------------------------------------------------- 1 | throw "help me!" 2 | -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testBasicFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testBasicFunction.ps1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testBasicFunctionSpecialVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testBasicFunctionSpecialVariables.ps1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testBasicFunctionWithRequires.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testBasicFunctionWithRequires.ps1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testBasicFunctionWithTriggerMetadataAndRetryContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testBasicFunctionWithTriggerMetadataAndRetryContext.ps1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testFunctionCleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testFunctionCleanup.ps1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testFunctionWithEntryPoint.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testFunctionWithEntryPoint.psm1 -------------------------------------------------------------------------------- /test/Unit/PowerShell/TestScripts/testFunctionWithOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/PowerShell/TestScripts/testFunctionWithOutput.ps1 -------------------------------------------------------------------------------- /test/Unit/Utility/FunctionReturnValueBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Utility/FunctionReturnValueBuilderTests.cs -------------------------------------------------------------------------------- /test/Unit/Utility/TypeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/test/Unit/Utility/TypeExtensionsTests.cs -------------------------------------------------------------------------------- /test/Unit/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parallelizeTestCollections": false 3 | } 4 | -------------------------------------------------------------------------------- /tools/helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/tools/helper.psm1 -------------------------------------------------------------------------------- /tools/protobuf.tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/tools/protobuf.tools.csproj -------------------------------------------------------------------------------- /upgrade_ps_sdk_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-powershell-worker/HEAD/upgrade_ps_sdk_instructions.md --------------------------------------------------------------------------------