├── .azuredevops └── dependabot.yml ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ └── General_question.md ├── copilot-instructions.md ├── notebooks │ ├── README.md │ ├── issues.github-issues │ ├── prs.github-issues │ └── sprint.github-issues ├── policies │ ├── issue.add-no-recent-activity.yml │ ├── issue.assign.yml │ ├── issue.close-duplicate-issues.yml │ ├── issue.close-stale-issues.yml │ ├── issue.flag-for-triage.yml │ ├── issue.prevent-auto-close.yml │ ├── issue.remove-needs-author-feedback.yml │ ├── issue.remove-needs-triage.yml │ ├── issue.remove-no-recent-activity-with-comment.yml │ └── pullrequest.all.yml ├── pull_request_template.md └── workflows │ ├── backport.yml │ └── dependency-review.yml ├── .gitignore ├── .sscignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODEOWNERS ├── CONTRIBUTING.md ├── CodeQL.yml ├── CustomDictionary.xml ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE.txt ├── LICENSE_APACHE.txt ├── NuGet.config ├── README.md ├── SECURITY.md ├── WebJobs.Script.sln ├── eng ├── actions │ └── backport │ │ ├── action.yml │ │ └── index.js ├── build │ ├── Engineering.props │ ├── Engineering.targets │ ├── PlaceholderSimulation.props │ ├── Release.props │ ├── Release.targets │ ├── RepositoryInfo.targets │ ├── Version.props │ ├── Version.targets │ ├── Workers.Dotnet.props │ ├── Workers.Java.props │ ├── Workers.Node.props │ ├── Workers.Powershell.props │ ├── Workers.Python.props │ ├── Workers.props │ └── ZipPublish.targets ├── ci │ ├── code-mirror.yml │ ├── host.benchmarks.yml │ ├── host.coldstart.yml │ ├── host.metrics-monitor.yml │ ├── integration-tests.yml │ ├── merge-mirror.yml │ ├── official-build.yml │ ├── public-build.yml │ └── templates │ │ ├── install-dotnet.yml │ │ ├── jobs │ │ ├── build-private-site-ext.yml │ │ └── run-unit-tests.yml │ │ ├── official │ │ └── jobs │ │ │ ├── build-artifacts-linux.yml │ │ │ ├── build-artifacts-windows.yml │ │ │ ├── merge-jittrace.yml │ │ │ ├── process-coldstart.yml │ │ │ ├── run-benchmarks.yml │ │ │ ├── run-coldstart.yml │ │ │ ├── run-integration-tests.yml │ │ │ ├── run-metrics-monitor.yml │ │ │ ├── run-non-e2e-tests.yml │ │ │ └── setup-benchmark-agents.yml │ │ ├── steps │ │ └── build-site-ext.yml │ │ └── variables │ │ ├── benchmarks.yml │ │ ├── build.yml │ │ └── coldstart.yml ├── perf │ └── http.benchmarks.yml ├── res │ ├── functions.png │ ├── icon.png │ └── key.snk └── script │ ├── checkin-secrets.ps1 │ └── checkout-secrets.ps1 ├── global.json ├── omnisharp.json ├── perf ├── Apps │ ├── HelloHttpNet9 │ │ ├── Hello.cs │ │ ├── HelloHttp.csproj │ │ ├── Program.cs │ │ └── host.json │ ├── HelloHttpNet9NoProxy │ │ ├── Hello.cs │ │ ├── HelloHttp.csproj │ │ ├── Program.cs │ │ └── host.json │ ├── HelloHttpNode │ │ ├── host.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── functions │ │ │ ├── Hello.js │ │ │ └── HelloAuth.js │ │ │ └── index.js │ ├── TimerAppNet9 │ │ ├── App.csproj │ │ ├── Program.cs │ │ ├── TimerFunctions.cs │ │ └── host.json │ └── global.json └── WebJobs.Script.Benchmarks │ ├── AuthUtilityBenchmarks.cs │ ├── CSharpCompilationBenchmarks.cs │ ├── GrpcMessageConversionBenchmarks.cs │ ├── Microsoft.Azure.WebJobs.Script.Benchmarks.csproj │ ├── Program.cs │ ├── README.md │ ├── RecommendedConfig.cs │ ├── SanitizerBenchmarks.cs │ └── ScriptLoggingBuilderExtensionsBenchmarks.cs ├── release_notes.md ├── sample ├── CSharp │ ├── ApiHubFileTrigger │ │ ├── function.json │ │ └── run.csx │ ├── BlobTrigger │ │ ├── function.json │ │ └── run.csx │ ├── CosmosDBTrigger │ │ ├── function.json │ │ └── run.csx │ ├── DocumentDB │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-AdminLevel │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-AnonymousLevel │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-Cancellation │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-Compat │ │ ├── function.json │ │ ├── function.proj │ │ └── run.csx │ ├── HttpTrigger-CustomRoute │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-Identities │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger-Poco │ │ ├── function.json │ │ └── run.csx │ ├── HttpTrigger │ │ ├── function.json │ │ └── run.csx │ ├── HttpTriggerWithObject │ │ ├── function.json │ │ └── run.csx │ ├── ManualTrigger │ │ ├── function.json │ │ └── run.csx │ ├── MobileTable │ │ ├── function.json │ │ └── run.csx │ ├── NotificationHub │ │ ├── function.json │ │ └── run.csx │ ├── QueueTrigger │ │ ├── function.json │ │ └── run.csx │ ├── SendGrid │ │ ├── function.json │ │ └── run.csx │ ├── Shared │ │ ├── Message.csx │ │ └── Order.csx │ ├── TimerTrigger │ │ ├── function.json │ │ └── run.csx │ └── host.json ├── CSharpBenchmark │ ├── HttpTriggerAnon │ │ ├── function.json │ │ └── run.csx │ └── host.json ├── CustomHandler │ ├── HttpTrigger │ │ └── function.json │ ├── host.json │ ├── proxies.json │ └── server.js ├── CustomHandlerRetry │ ├── HttpTrigger │ │ └── function.json │ ├── host.json │ ├── package-lock.json │ ├── package.json │ └── server.js ├── HttpWorker │ ├── HttpTrigger │ │ └── function.json │ ├── host.json │ ├── proxies.json │ └── server.js ├── Java │ ├── HttpTrigger │ │ ├── Function.java.txt │ │ ├── HttpTrigger-1.0-SNAPSHOT.jar │ │ └── function.json │ └── host.json ├── Node │ ├── ApiHubFileTrigger │ │ ├── function.json │ │ └── index.js │ ├── BlobTrigger │ │ ├── function.json │ │ └── index.js │ ├── DocumentDB │ │ ├── function.json │ │ └── index.js │ ├── EventHubTrigger │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-CustomRoute-Get │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-CustomRoute-Post │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-Disabled │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-Promise │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-Timeout │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger │ │ ├── function.json │ │ └── index.js │ ├── ManualTrigger │ │ ├── function.json │ │ └── index.js │ ├── MobileTable │ │ ├── function.json │ │ └── index.js │ ├── NotificationHub │ │ ├── function.json │ │ └── index.js │ ├── QueueTrigger │ │ ├── function.json │ │ └── index.js │ ├── SendGrid │ │ ├── function.json │ │ └── index.js │ ├── ServiceBusQueueTrigger │ │ ├── function.json │ │ └── index.js │ ├── ServiceBusTopicTrigger │ │ ├── function.json │ │ └── index.js │ ├── Shared │ │ └── test.js │ ├── TimerTrigger │ │ ├── function.json │ │ └── index.js │ ├── host.json │ └── proxies.json ├── NodeDrain │ ├── HttpTrigger-LongRun │ │ ├── function.json │ │ └── index.js │ └── host.json ├── NodeResume │ ├── HttpTrigger │ │ ├── function.json │ │ └── index.js │ └── host.json ├── NodeRetry │ ├── HttpTrigger-RetryFunctionJson │ │ ├── function.json │ │ └── index.js │ ├── HttpTrigger-RetryHostJson │ │ ├── function.json │ │ └── index.js │ └── host.json ├── NodeWithoutBundle │ ├── HttpTrigger │ │ ├── function.json │ │ └── index.js │ ├── Shared │ │ └── test.js │ └── host.json ├── PowerShell │ ├── HttpTrigger │ │ ├── function.json │ │ └── run.ps1 │ └── host.json ├── Python │ ├── HttpTrigger │ │ ├── __init__.py │ │ └── function.json │ └── host.json ├── PythonWorkerIndexing │ ├── function_app.py │ └── host.json └── Samples.csproj ├── schemas └── json │ ├── README.md │ ├── extensions.json │ └── function.json ├── src.ruleset ├── src ├── Directory.Build.props ├── Directory.Version.props ├── WebJobs.Script.Abstractions │ ├── Description │ │ ├── Binding │ │ │ ├── BindingDirection.cs │ │ │ ├── BindingMetadata.cs │ │ │ ├── Cardinality.cs │ │ │ └── DataType.cs │ │ ├── FunctionMetadata.cs │ │ ├── IFunctionProvider.cs │ │ ├── RetryOptions.cs │ │ └── RetryStrategy.cs │ ├── Directory.Version.props │ ├── WebJobs.Script.Abstractions.csproj │ └── key.snk ├── WebJobs.Script.Grpc │ ├── .gitignore │ ├── Channel │ │ ├── GrpcCapabilities.cs │ │ ├── GrpcCapabilitiesUpdateStrategy.cs │ │ ├── GrpcWorkerChannel.Log.cs │ │ ├── GrpcWorkerChannel.cs │ │ ├── GrpcWorkerChannelFactory.cs │ │ ├── IInvocationMessageDispatcher.cs │ │ ├── IInvocationMessageDispatcherFactory.cs │ │ ├── OrderedInvocationMessageDispatcher.cs │ │ ├── OrderedInvocationMessageDispatcherFactory.cs │ │ └── ThreadPoolInvocationProcessorFactory.cs │ ├── Eventing │ │ ├── GrpcEvent.cs │ │ ├── GrpcEventExtensions.cs │ │ ├── InboundGrpcEvent.cs │ │ └── OutboundGrpcEvent.cs │ ├── Extensions │ │ ├── RpcSharedMemoryDataExtensions.cs │ │ └── ScriptInvocationContextExtensions.cs │ ├── FunctionInvocationDispatcherFactory.cs │ ├── FunctionInvocationDispatcherShutdownManager.cs │ ├── FunctionInvocationDispatcherState.cs │ ├── GrpcServiceCollectionsExtensions.cs │ ├── Hosting │ │ ├── HttpScriptHostRecycleOptionsSetup.cs │ │ └── RpcServiceCollectionExtensions.cs │ ├── Http │ │ ├── Configuration │ │ │ ├── CustomHandlerType.cs │ │ │ ├── HttpWorkerOptions.cs │ │ │ ├── HttpWorkerOptionsSetup.cs │ │ │ ├── RpcFunctionMetadataOptionsSetup.cs │ │ │ └── RpcScriptHostRecycleOptionsSetup.cs │ │ ├── CustomHandlerHttpOptions.cs │ │ ├── DefaultHttpWorkerService.cs │ │ ├── HttpFunctionDescriptorProvider.cs │ │ ├── HttpOutputBindingResponse.cs │ │ ├── HttpScriptInvocationContext.cs │ │ ├── HttpScriptInvocationContextExtensions.cs │ │ ├── HttpScriptInvocationResult.cs │ │ ├── HttpScriptInvocationResultExtensions.cs │ │ ├── HttpWorkerChannel.cs │ │ ├── HttpWorkerChannelFactory.cs │ │ ├── HttpWorkerConstants.cs │ │ ├── HttpWorkerContext.cs │ │ ├── HttpWorkerDescription.cs │ │ ├── HttpWorkerFunctionProvider.cs │ │ ├── HttpWorkerProcess.cs │ │ ├── HttpWorkerProcessFactory.cs │ │ ├── HttpWorkerRoute.cs │ │ ├── IHttpWorkerChannel.cs │ │ ├── IHttpWorkerChannelFactory.cs │ │ ├── IHttpWorkerProcessFactory.cs │ │ ├── IHttpWorkerService.cs │ │ └── RpcScriptInvocationContextExtensions.cs │ ├── HttpFunctionInvocationDispatcher.cs │ ├── IFunctionInvocationDispatcher.cs │ ├── IFunctionInvocationDispatcherFactory.cs │ ├── IWorkerChannel.cs │ ├── MessageExtensions │ │ ├── GrpcMessageConversionExtensions.cs │ │ ├── GrpcMessageExtensionUtilities.cs │ │ └── StatusResultExtensions.cs │ ├── MultiLanguageFunctionDescriptorProvider.cs │ ├── ProcessManagement │ │ ├── DefaultWorkerProcessFactory.cs │ │ ├── EmptyProcessRegistry.cs │ │ ├── IProcessRegistry.cs │ │ ├── IWorkerProcess.cs │ │ ├── IWorkerProcessFactory.cs │ │ ├── JobObjectRegistry.cs │ │ ├── WorkerContext.cs │ │ ├── WorkerProcess.cs │ │ ├── WorkerProcessExitException.cs │ │ └── WorkerProcessUtilities.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rpc │ │ ├── FunctionRegistration │ │ │ ├── IRpcFunctionInvocationDispatcherLoadBalancer.cs │ │ │ ├── RpcFunctionInvocationDispatcher.cs │ │ │ └── RpcFunctionInvocationDispatcherLoadBalancer.cs │ │ ├── IJobHostRpcWorkerChannelManager.cs │ │ ├── IRpcServer.cs │ │ ├── IRpcWorkerChannel.cs │ │ ├── IRpcWorkerChannelDictionary.cs │ │ ├── IRpcWorkerChannelFactory.cs │ │ ├── IRpcWorkerProcessFactory.cs │ │ ├── IWebHostRpcWorkerChannelManager.cs │ │ ├── JobHostRpcWorkerChannelManager.cs │ │ ├── RpcInitializationService.cs │ │ ├── RpcWorkerChannelState.cs │ │ ├── RpcWorkerContext.cs │ │ ├── RpcWorkerProcess.cs │ │ ├── RpcWorkerProcessFactory.cs │ │ └── WebHostRpcWorkerChannelManager.cs │ ├── RpcFunctionDescriptorProvider.cs │ ├── RpcScriptHostLifecycleService.cs │ ├── RpcScriptHostWorkerManager.cs │ ├── RpcWebHostWorkerManager.cs │ ├── RpcWorkerFunctionDescriptorProviderFactory.cs │ ├── Server │ │ ├── AspNetCoreGrpcHostBuilder.cs │ │ ├── AspNetCoreGrpcServer.cs │ │ ├── ExtensionsCompositeEndpointDataSource.cs │ │ ├── FunctionRpcService.cs │ │ └── Startup.cs │ ├── WebJobs.Script.Grpc.csproj │ ├── WorkerChannelThrottleProvider.cs │ ├── WorkerConcurrencyManager.cs │ ├── WorkerFunctionDescriptorProvider.cs │ ├── WorkerFunctionInvoker.cs │ ├── WorkerFunctionMetadataProvider.cs │ ├── WorkerUtilities.cs │ └── azure-functions-language-worker-protobuf │ │ ├── .gitignore │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ └── proto │ │ ├── FunctionRpc.proto │ │ ├── identity │ │ └── ClaimsIdentityRpc.proto │ │ └── shared │ │ └── NullableTypes.proto ├── WebJobs.Script.SiteExtension │ ├── Compress-SiteExtension.ps1 │ ├── New-PrivateSiteExtension.ps1 │ ├── New-ReleaseJson.ps1 │ ├── Publish.MultiTFM.targets │ ├── Publish.SingleTFM.targets │ ├── Tasks.targets │ ├── WebJobs.Script.SiteExtension.csproj │ ├── applicationHost.xdt │ ├── extension.xml │ └── readme.md ├── WebJobs.Script.WebHost │ ├── .bowerrc │ ├── AssemblyAnalysis │ │ └── AssemblyAnalysisService.cs │ ├── Configuration │ │ ├── AzureMonitorLoggingOptions.cs │ │ ├── AzureMonitorLoggingOptionsSetup.cs │ │ ├── CorsOptionsSetup.cs │ │ ├── CustomHttpHeadersOptions.cs │ │ ├── CustomHttpHeadersOptionsSetup.cs │ │ ├── ExtensionSystemOptions.cs │ │ ├── ExtensionSystemOptionsSetup.cs │ │ ├── FlexConsumptionMetricsPublisherOptions.cs │ │ ├── FlexConsumptionMetricsPublisherOptionsSetup.cs │ │ ├── HostBuiltChangeTokenSource.cs │ │ ├── HostCorsOptions.cs │ │ ├── HostCorsOptionsSetup.cs │ │ ├── HostEasyAuthOptions.cs │ │ ├── HostEasyAuthOptionsSetup.cs │ │ ├── HostHstsOptions.cs │ │ ├── HostHstsOptionsSetup.cs │ │ ├── HttpBodyControlOptions.cs │ │ ├── HttpBodyControlOptionsSetup.cs │ │ ├── HttpOptionsSetup.cs │ │ ├── JobHostOptionsSetup.cs │ │ ├── LinuxConsumptionLegionMetricsPublisherOptions.cs │ │ ├── LinuxConsumptionLegionMetricsPublisherOptionsSetup.cs │ │ ├── PrimaryHostCoordinatorOptionsSetup.cs │ │ ├── ResponseCompressionOptions.cs │ │ ├── ResponseCompressionOptionsSetup.cs │ │ ├── ScriptApplicationHostOptionsChangeTokenSource.cs │ │ ├── ScriptApplicationHostOptionsSetup.cs │ │ ├── SpecializationChangeTokenSource.cs │ │ └── WebScriptHostConfigurationSource.cs │ ├── ContainerManagement │ │ ├── AtlasContainerInitializationHostedService.cs │ │ ├── ILinuxContainerActivityPublisher.cs │ │ ├── LegionContainerInitializationHostedService.cs │ │ ├── LinuxContainerActivityPublisher.cs │ │ ├── LinuxContainerInitializationHostedService.cs │ │ └── NullLinuxContainerActivityPublisher.cs │ ├── Controllers │ │ ├── ExtensionBundleController.cs │ │ ├── ExtensionsController.cs │ │ ├── FunctionsController.cs │ │ ├── HostController.cs │ │ ├── InstanceController.cs │ │ └── KeysController.cs │ ├── DefaultScriptHostBuilder.cs │ ├── DependencyInjection │ │ ├── DependencyValidator │ │ │ ├── DependencyValidator.cs │ │ │ ├── ExpectedCollectionBuilder.cs │ │ │ ├── ExpectedDependencyBuilder.cs │ │ │ ├── IDependencyValidator.cs │ │ │ ├── InvalidServiceDescriptor.cs │ │ │ ├── InvalidServiceDescriptorReason.cs │ │ │ └── ServiceMatch.cs │ │ ├── JobHostHostLifetime.cs │ │ ├── JobHostScopedServiceProviderFactory.cs │ │ └── ServiceProviderExtensions.cs │ ├── Diagnostics │ │ ├── AzureMonitorDiagnosticLogger.cs │ │ ├── AzureMonitorDiagnosticLoggerProvider.cs │ │ ├── AzureMonitorDiagnosticLogsEventSource.cs │ │ ├── BufferedConsoleWriter.cs │ │ ├── CompositeLogger.cs │ │ ├── DeferredLogEntry.cs │ │ ├── DeferredLogger.cs │ │ ├── DeferredLoggerProvider.cs │ │ ├── DiagnosticEvent.cs │ │ ├── DiagnosticEventLogger.cs │ │ ├── DiagnosticEventLoggerProvider.cs │ │ ├── DiagnosticEventNullRepository.cs │ │ ├── DiagnosticEventRepositoryFactory.cs │ │ ├── DiagnosticEventTableStorageRepository.Log.cs │ │ ├── DiagnosticEventTableStorageRepository.cs │ │ ├── DiagnosticListenerService.cs │ │ ├── EtwEventGenerator.cs │ │ ├── ExtendedEventSource.cs │ │ ├── Extensions │ │ │ ├── ScriptHostServiceLoggerExtension.cs │ │ │ └── ScriptHostServiceSecurityExtension.cs │ │ ├── FunctionInstanceLogCollectorProvider.cs │ │ ├── FunctionInstanceLogger.cs │ │ ├── FunctionsEventSource.cs │ │ ├── FunctionsSystemLogsEventSource.cs │ │ ├── HealthChecks │ │ │ ├── HealthCheckAuthMiddleware.cs │ │ │ ├── HealthCheckResponseWriter.cs │ │ │ └── HealthCheckWaitMiddleware.cs │ │ ├── IDiagnosticEventRepository.cs │ │ ├── IDiagnosticEventRepositoryFactory.cs │ │ ├── IEventGenerator.cs │ │ ├── ILinuxAppServiceFileLogger.cs │ │ ├── ILinuxAppServiceFileLoggerFactory.cs │ │ ├── ILoggingBuilderExtensions.cs │ │ ├── KubernetesEventGenerator.cs │ │ ├── LinuxAppServiceEventGenerator.cs │ │ ├── LinuxAppServiceFileLogger.cs │ │ ├── LinuxAppServiceFileLoggerFactory.cs │ │ ├── LinuxContainerEventGenerator.cs │ │ ├── LinuxEventGenerator.cs │ │ ├── MetricsEventManager.cs │ │ ├── NonDisposableMetricsLogger.cs │ │ ├── ScriptLoggerFactory.cs │ │ ├── SystemLogger.cs │ │ ├── SystemLoggerProvider.cs │ │ ├── SystemMetricEvent.cs │ │ ├── WebHostMetricsLogger.cs │ │ └── WebHostSystemLoggerProvider.cs │ ├── Extensions │ │ ├── EntityTagHeaderValueExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── FunctionMetadataExtensions.cs │ │ ├── FunctionMetadataResponseExtensions.cs │ │ ├── HttpContextExtensions.cs │ │ ├── HttpHeadersExtensions.cs │ │ ├── HttpResponseMessageExtensions.cs │ │ ├── IEnumerableTasksExtensions.cs │ │ ├── IExternalScopeProviderExtensions.cs │ │ ├── ScriptHostManagerExtensions.cs │ │ ├── VfsStringExtensions.cs │ │ ├── WebHostSettingsExtensions.cs │ │ └── ZipArchiveExtensions.cs │ ├── Features │ │ ├── FunctionExecutionFeature.cs │ │ └── IFunctionExecutionFeature.cs │ ├── FileMonitoringService.cs │ ├── Filters │ │ ├── ArmExtensionResourceFilter.cs │ │ ├── EnableDebugModeFilter.cs │ │ └── RequiresRunningHostAttribute.cs │ ├── FunctionsSyncService.cs │ ├── GlobalSuppressions.cs │ ├── Health │ │ └── TokenExpirationService.cs │ ├── Helpers │ │ ├── MediaTypeMap.cs │ │ ├── TableStorageHelpers.cs │ │ └── VfsSpecialFolders.cs │ ├── Home.html │ ├── HttpException.cs │ ├── HttpRequestQueue.cs │ ├── IFileMonitoringService.cs │ ├── IScriptHostBuilder.cs │ ├── Management │ │ ├── AtlasInstanceManager.cs │ │ ├── FunctionsSyncManager.cs │ │ ├── IFunctionsSyncManager.cs │ │ ├── IInstanceManager.cs │ │ ├── IMeshServiceClient.cs │ │ ├── IWebFunctionsManager.cs │ │ ├── LegionInstanceManager.cs │ │ ├── LinuxInstanceManager.cs │ │ ├── LinuxSpecialization │ │ │ ├── BashCommandHandler.cs │ │ │ ├── IBashCommandHandler.cs │ │ │ ├── IManagedIdentityTokenProvider.cs │ │ │ ├── IPackageDownloadHandler.cs │ │ │ ├── IRunFromPackageHandler.cs │ │ │ ├── IUnZipHandler.cs │ │ │ ├── ManagedIdentityTokenProvider.cs │ │ │ ├── PackageDownloadHandler.cs │ │ │ ├── RunFromPackageHandler.cs │ │ │ └── UnZipHandler.cs │ │ ├── MeshServiceClient.cs │ │ ├── NullMeshServiceClient.cs │ │ ├── TriggersOperationResult.cs │ │ ├── TriggersResult.cs │ │ ├── VirtualFileSystem.cs │ │ └── WebFunctionsManager.cs │ ├── Metrics │ │ ├── CgroupMemoryUsageHelper.cs │ │ ├── FlexConsumptionMetricsPublisher.Lifecycle.cs │ │ ├── FlexConsumptionMetricsPublisher.cs │ │ ├── HostMetricsProvider.cs │ │ ├── IHostMetricsProvider.cs │ │ ├── IMetricsPublisher.cs │ │ ├── LegionMetricsFileManager.cs │ │ ├── LinuxContainerLegionMetricsPublisher.cs │ │ └── LinuxContainerMetricsPublisher.cs │ ├── Middleware │ │ ├── AllowSynchronousIOMiddleware.cs │ │ ├── AppServiceHeaderFixupMiddleware.cs │ │ ├── ClrOptimizationMiddleware.cs │ │ ├── CorsMiddlewareFactory.cs │ │ ├── CustomHttpHeadersMiddleware.cs │ │ ├── EnvironmentReadyCheckMiddleware.cs │ │ ├── ExceptionMiddleware.Log.cs │ │ ├── ExceptionMiddleware.cs │ │ ├── FunctionInvocationMiddleware.cs │ │ ├── HandleCancellationMiddleware.cs │ │ ├── HomepageMiddleware.cs │ │ ├── HostAvailabilityCheckMiddleware.Log.cs │ │ ├── HostAvailabilityCheckMiddleware.cs │ │ ├── HostWarmupMiddleware.cs │ │ ├── HostnameFixupMiddleware.cs │ │ ├── HstsConfigurationMiddleware.cs │ │ ├── HttpRequestBodySizeMiddleware.cs │ │ ├── HttpThrottleMiddleware.cs │ │ ├── ICorsMiddlewareFactory.cs │ │ ├── IJobHostHttpMiddleware.cs │ │ ├── JobHostCorsMiddleware.cs │ │ ├── JobHostEasyAuthMiddleware.cs │ │ ├── JobHostMiddleware │ │ │ ├── DefaultMiddlewarePipeline.cs │ │ │ └── IJobHostMiddlewarePipeline.cs │ │ ├── JobHostPipelineMiddleware.cs │ │ ├── PlaceholderSpecializationMiddleware.cs │ │ ├── ScriptHostRequestServiceProviderMiddleware.cs │ │ ├── SpecializationSimulatorMiddleware.cs │ │ ├── SystemTraceMiddleware.cs │ │ └── VirtualFileSystemMiddleware.cs │ ├── Models │ │ ├── ApiModel.cs │ │ ├── ApiModelUtility.cs │ │ ├── AzureStorageInfoValue.cs │ │ ├── AzureStorageType.cs │ │ ├── CodePackageType.cs │ │ ├── ContainerFunctionExecutionActivity.cs │ │ ├── ContainerHealthEvent.cs │ │ ├── ContainerHealthEventType.cs │ │ ├── CorsSettings.cs │ │ ├── DrainModeState.cs │ │ ├── DrainModeStatus.cs │ │ ├── EasyAuthSettings.cs │ │ ├── ErrorResponse.cs │ │ ├── ExtensionBundle.cs │ │ ├── ExtensionsRestoreJob.cs │ │ ├── ExtensionsRestoreStatus.cs │ │ ├── FileCallbackResult.cs │ │ ├── FunctionAppSecrets.cs │ │ ├── FunctionInvocation.cs │ │ ├── FunctionMetadataResponse.cs │ │ ├── FunctionMetrics.cs │ │ ├── FunctionProcesses.cs │ │ ├── FunctionStatus.cs │ │ ├── HostAssignmentContext.cs │ │ ├── HostAssignmentRequest.cs │ │ ├── HostLogEntry.cs │ │ ├── HostRestartResponse.cs │ │ ├── HostStatus.cs │ │ ├── Link.cs │ │ ├── MSIContext.cs │ │ ├── ManagedServiceIdentity.cs │ │ ├── ManagedServiceIdentityType.cs │ │ ├── ResumeStatus.cs │ │ ├── RunFromPackageContext.cs │ │ ├── TokenServiceMsiResponse.cs │ │ └── VfsStatEntry.cs │ ├── NullMetricsPublisher.cs │ ├── OperationResult.cs │ ├── PreJIT │ │ ├── .jitmarker │ │ ├── JitTraceRuntime.cs │ │ ├── coldstart.jittrace │ │ └── linux.coldstart.jittrace │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── launchSettings.json │ ├── Proxy │ │ └── ProxyFunctionExecutor.cs │ ├── ResourceContainsSecretsAttribute.cs │ ├── Resources │ │ ├── Functions │ │ │ ├── WarmUp │ │ │ │ ├── function.json │ │ │ │ └── run.csx │ │ │ ├── host.json │ │ │ └── proxies.json │ │ └── app_offline.htm │ ├── Routing │ │ └── ScriptRouteHandler.cs │ ├── Scale │ │ ├── TableEntityConverter.cs │ │ └── TableStorageScaleMetricsRepository.cs │ ├── ScriptHostStartupOperation.cs │ ├── Security │ │ ├── Authentication │ │ │ ├── Jwt │ │ │ │ ├── ScriptJwtBearerExtensions.cs │ │ │ │ └── ScriptJwtBearerHandler.cs │ │ │ ├── Keys │ │ │ │ ├── AuthLevelAuthenticationDefaults.cs │ │ │ │ ├── AuthLevelExtensions.cs │ │ │ │ ├── AuthenticationLevelHandler.cs │ │ │ │ └── AuthenticationLevelOptions.cs │ │ │ └── SecurityConstants.cs │ │ ├── Authorization │ │ │ ├── AuthLevelAuthorizationHandler.cs │ │ │ ├── AuthLevelRequirement.cs │ │ │ ├── AuthUtility.cs │ │ │ ├── FunctionAuthorizationHandler.cs │ │ │ ├── FunctionAuthorizationRequirement.cs │ │ │ ├── NamedAuthLevelAuthorizationHandler.cs │ │ │ └── Policies │ │ │ │ ├── AuthorizationOptionsExtensions.cs │ │ │ │ └── PolicyNames.cs │ │ ├── EncryptionHelper.cs │ │ ├── JwtTokenHelper.cs │ │ ├── KeyManagement │ │ │ ├── BaseSecretsRepository.cs │ │ │ ├── BlobStorageSasSecretsRepository.cs │ │ │ ├── BlobStorageSecretsRepository.cs │ │ │ ├── ContainerAppsSecretsRepository.cs │ │ │ ├── DataProtectionKeyValueConverter.cs │ │ │ ├── DefaultKeyValueConverterFactory.cs │ │ │ ├── DefaultSecretManagerProvider.cs │ │ │ ├── FileSystemSecretsRepository.cs │ │ │ ├── FunctionSecrets.cs │ │ │ ├── HostKeyScopes.cs │ │ │ ├── HostSecrets.cs │ │ │ ├── HostSecretsInfo.cs │ │ │ ├── IKeyValueConverterFactory.cs │ │ │ ├── IKeyValueReader.cs │ │ │ ├── IKeyValueWriter.cs │ │ │ ├── IKubernetesClient.cs │ │ │ ├── ISecretManager.cs │ │ │ ├── ISecretManagerProvider.cs │ │ │ ├── ISecretsRepository.cs │ │ │ ├── Key.cs │ │ │ ├── KeyOperationResult.cs │ │ │ ├── KeyValueConverter.cs │ │ │ ├── KeyValueConverterFactoryExtensions.cs │ │ │ ├── KeyVaultSecretsRepository.cs │ │ │ ├── KubernetesSecretsRepository.cs │ │ │ ├── PlainTextKeyValueConverter.cs │ │ │ ├── ScriptSecrets.cs │ │ │ ├── ScriptSecretsType.cs │ │ │ ├── SecretManager.cs │ │ │ ├── SecretsChangedEventArgs.cs │ │ │ ├── Serialization │ │ │ │ ├── IScriptSecretSerializer.cs │ │ │ │ ├── ScriptSecretSerializer.cs │ │ │ │ ├── ScriptSecretSerializerV0.cs │ │ │ │ └── ScriptSecretSerializerV1.cs │ │ │ └── SimpleKubernetesClient.cs │ │ ├── SecretGenerator.cs │ │ └── SecretsUtility.cs │ ├── Standby │ │ ├── IStandbyManager.cs │ │ ├── StandbyChangeTokenSource.cs │ │ ├── StandbyInitializationService.cs │ │ ├── StandbyManager.cs │ │ ├── StandbyOptions.cs │ │ ├── StandbyOptionsSetup.cs │ │ └── WarmUpConstants.cs │ ├── Startup.cs │ ├── StartupContextProvider.cs │ ├── Storage │ │ ├── DefaultDelegatingHandlerProvider.cs │ │ ├── IDelegatingHandlerProvider.cs │ │ └── WebJobsStorageDelegatingHandler.cs │ ├── WebHooks │ │ ├── DefaultScriptWebHookProvider.cs │ │ └── IScriptWebHookProvider.cs │ ├── WebHost │ │ ├── IScriptWebHostEnvironment.cs │ │ └── ScriptWebHostEnvironment.cs │ ├── WebHostServiceCollectionExtensions.cs │ ├── WebJobs.Script.WebHost.csproj │ ├── WebJobsApplicationBuilderExtension.cs │ ├── WebJobsScriptHostService.cs │ ├── WebScriptHostBuilderExtension.cs │ ├── WebScriptHostExceptionHandler.cs │ ├── WebScriptHostHttpRoutesManager.cs │ ├── appsettings.json │ ├── extension.xml │ ├── runtimeconfig.template.json │ └── web.config └── WebJobs.Script │ ├── ActiveHostChangedEventArgs.cs │ ├── Binding │ ├── BindingContext.cs │ ├── CoreExtensionsScriptBindingProvider.cs │ ├── Extensibility │ │ ├── IScriptBindingProvider.cs │ │ ├── ScriptBinding.cs │ │ ├── ScriptBindingContext.cs │ │ └── ScriptBindingProvider.cs │ ├── ExtensionBinding.cs │ ├── FunctionBinding.cs │ ├── GeneralScriptBindingProvider.cs │ ├── Http │ │ ├── Formatters │ │ │ └── ByteArrayOutputFormatter.cs │ │ ├── HttpBinding.cs │ │ ├── RawScriptResult.cs │ │ └── ScriptObjectResult.cs │ ├── Manual │ │ ├── ManualTriggerAttribute.cs │ │ ├── ManualTriggerAttributeBindingProvider.cs │ │ ├── ManualTriggerConfigProvider.cs │ │ └── ManualTriggerWebJobsBuilderExtensions.cs │ ├── NullListener.cs │ ├── SimpleValueProvider.cs │ ├── StreamValueBinder.cs │ ├── ValueBinder.cs │ └── WebJobsCoreScriptBindingProvider.cs │ ├── BindingExtensions │ ├── ExtensionsManager.cs │ └── IExtensionsManager.cs │ ├── CloudConstants.cs │ ├── CloudName.cs │ ├── Config │ ├── ActiveHostConfigurationSource.cs │ ├── ActiveHostWebJobsOptionsSetup.cs │ ├── AppServiceOptions.cs │ ├── AppServiceOptionsSetup.cs │ ├── ApplicationInsightsLoggerOptionsSetup.cs │ ├── ConfigurationSectionNames.cs │ ├── ConsoleLoggingOptions.cs │ ├── ConsoleLoggingOptionsSetup.cs │ ├── ExtensionBundleConfigurationHelper.cs │ ├── ExtensionBundleOptions.cs │ ├── ExtensionRequirementOptions.cs │ ├── ExtensionRequirementOptionsSetup.cs │ ├── FeatureFlags.cs │ ├── FunctionMetadataOptions.cs │ ├── FunctionsHostingConfigOptions.cs │ ├── FunctionsHostingConfigOptionsSetup.cs │ ├── FunctionsHostingConfigProvider.cs │ ├── FunctionsHostingConfigSource.cs │ ├── HostConfigurationProfile.cs │ ├── HostHealthMonitorOptions.cs │ ├── HostHealthMonitorOptionsSetup.cs │ ├── HostJsonFileConfigurationOptions.cs │ ├── HostJsonFileConfigurationSource.cs │ ├── IConfigureBuilder.cs │ ├── JobHostFunctionTimeoutOptionsSetup.cs │ ├── ScaleOptionsSetup.cs │ ├── ScriptApplicationHostOptions.cs │ ├── ScriptApplicationHostOptionsMonitor.cs │ ├── ScriptEnvironmentVariablesConfigurationSource.cs │ ├── ScriptHostRecycleOptions.cs │ ├── ScriptHostRecycleOptionsSetup.cs │ ├── ScriptJobHostOptions.cs │ ├── ScriptJobHostOptionsSetup.cs │ ├── ScriptSettingsManager.cs │ ├── ScriptTelemetryInitializer.cs │ ├── ScriptTelemetryProcessor.cs │ ├── ScriptTypeLocator.cs │ ├── TransmissionStatusHandler.cs │ ├── WorkerConcurrencyOptions.cs │ └── WorkerTraceFilterTelemetryProcessor.cs │ ├── CustomAttributeBuilderUtility.cs │ ├── DependencyInjection │ ├── ExternalConfigurationStartupValidator.cs │ ├── ExternalConfigurationStartupValidatorService.cs │ ├── InstanceServices │ │ ├── ScriptInstanceServicesProvider.cs │ │ └── ScriptInstanceServicesProviderFactory.cs │ └── ScriptStartupTypeLocator.cs │ ├── Description │ ├── CacheMetadataResolver.cs │ ├── Compilation │ │ ├── CompilationServiceException.cs │ │ ├── ICompilation.cs │ │ ├── ICompilationService.cs │ │ └── ICompilationServiceFactory.cs │ ├── DiagnosticSeverityExtensions.cs │ ├── DotNet │ │ ├── Compilation │ │ │ ├── CSharp │ │ │ │ ├── Analyzers │ │ │ │ │ ├── AsyncVoidAnalyzer.cs │ │ │ │ │ └── InvalidFileMetadataReferenceAnalyzer.cs │ │ │ │ ├── CSharpCompilation.cs │ │ │ │ └── CSharpCompilationService.cs │ │ │ ├── DotNetCompilationResult.cs │ │ │ ├── DotNetCompilationServiceFactory.cs │ │ │ ├── IDotNetCompilation.cs │ │ │ └── Raw │ │ │ │ ├── RawAssemblyCompilation.cs │ │ │ │ └── RawAssemblyCompilationService.cs │ │ ├── DependencyHelper.cs │ │ ├── DirectSharedAssemblyProvider.cs │ │ ├── DotNetConstants.cs │ │ ├── DotNetFunctionDescriptorProvider.cs │ │ ├── DotNetFunctionInvoker.cs │ │ ├── DotNetMuxer.cs │ │ ├── DotNetScriptTypes.cs │ │ ├── DynamicFunctionAssemblyLoadContext.cs │ │ ├── ExtensionSharedAssemblyProvider.cs │ │ ├── FunctionAssemblyLoadContext.cs │ │ ├── FunctionEntryPointResolver.cs │ │ ├── FunctionParameter.cs │ │ ├── FunctionSignature.cs │ │ ├── IFunctionEntryPointResolver.cs │ │ ├── IFunctionMetadataResolver.cs │ │ ├── IMethodReference.cs │ │ ├── ISharedAssemblyProvider.cs │ │ ├── LocalSharedAssemblyProvider.cs │ │ ├── MethodReference.cs │ │ ├── NullFunctionMetadataResolver.cs │ │ ├── PackageAssemblyResolver.cs │ │ ├── PackageManager.cs │ │ ├── PackageReference.cs │ │ ├── RuntimeAssembliesConfig.cs │ │ ├── RuntimeAssembliesInfo.cs │ │ ├── RuntimeAssembliesJsonContext.cs │ │ ├── RuntimeAsset.cs │ │ ├── RuntimeGraph.cs │ │ ├── RuntimeGraphJsonContext.cs │ │ ├── RuntimeInfo.cs │ │ ├── ScriptFunctionMetadataResolver.cs │ │ └── ScriptRuntimeAssembly.cs │ ├── FunctionDescriptor.cs │ ├── FunctionDescriptorProvider.cs │ ├── FunctionGenerator.cs │ ├── FunctionGroupListenerDecorator.cs │ ├── FunctionGroups.cs │ ├── FunctionInvocationContext.cs │ ├── FunctionInvokerBase.cs │ ├── FunctionLoader.cs │ ├── IFunctionInvoker.cs │ ├── IWorkerFunctionDescriptorProviderFactory.cs │ ├── LogTargets.cs │ ├── PackageRestoreResult.cs │ ├── ParameterDescriptor.cs │ ├── Proxies │ │ ├── ProxyClientExecutor.cs │ │ ├── ProxyFunctionDescriptorProvider.cs │ │ └── ProxyFunctionInvoker.cs │ └── Workers │ │ ├── Rpc │ │ └── RawFunctionMetadata.cs │ │ ├── ScriptInvocationContext.cs │ │ └── ScriptInvocationResult.cs │ ├── Diagnostics │ ├── ApplicationInsightsMetricExporter.EventSource.cs │ ├── ApplicationInsightsMetricExporter.cs │ ├── ApplicationInsightsMetricExporterOptions.cs │ ├── ApplicationInsightsSdkVersionProvider.cs │ ├── DefaultFileWriterFactory.cs │ ├── DiagnosticEventConstants.cs │ ├── DiagnosticEventLoggerExtensions.cs │ ├── Extensions │ │ ├── DescriptionLoggerExtension.cs │ │ ├── ExtensionBundleLoggerExtension.cs │ │ ├── HostLoggerExtension.cs │ │ ├── LoggerExtension.cs │ │ └── ScriptHostLoggerExtension.cs │ ├── FileLogger.cs │ ├── FileLoggingMode.cs │ ├── FileWriter.cs │ ├── ForwardingLogger.cs │ ├── ForwardingLoggerAttribute.cs │ ├── ForwardingLoggerFactory.cs │ ├── FunctionFileLoggerProvider.cs │ ├── FunctionStartedEvent.cs │ ├── FunctionsSdkVersionProvider.cs │ ├── HealthChecks │ │ ├── DynamicHealthCheckService.cs │ │ ├── HealthCheckData.cs │ │ ├── HealthCheckExtensions.cs │ │ ├── HealthCheckMetrics.cs │ │ ├── HealthCheckNames.cs │ │ ├── HealthCheckTags.cs │ │ ├── ScriptHostHealthCheck.cs │ │ ├── TelemetryHealthCheckPublisher.cs │ │ ├── WebHostHealthCheck.cs │ │ └── WebJobsStorageHealthCheck.cs │ ├── HostFileLoggerProvider.cs │ ├── HostStartedEvent.cs │ ├── IFileWriter.cs │ ├── IFileWriterFactory.cs │ ├── IHostDiagnosticEvent.cs │ ├── IMetricsLogger.cs │ ├── ISystemLoggerFactory.cs │ ├── LogType.cs │ ├── MetricEvent.cs │ ├── MetricEventNames.cs │ ├── MetricsLogger.cs │ ├── OpenTelemetry │ │ ├── ActivitySanitizingProcessor.cs │ │ ├── ActivitySourceWrapper.cs │ │ ├── FunctionsResourceDetector.cs │ │ ├── OpenTelemetryConfigurationExtensions.cs │ │ ├── OpenTelemetryConstants.cs │ │ ├── OpenTelemetryEventListener.cs │ │ ├── OpenTelemetryEventListenerService.cs │ │ ├── ResourceSemanticConventions.cs │ │ └── TelemetryMode.cs │ ├── StructuredLogWriter.cs │ ├── SystemLoggerFactory.cs │ ├── TelemetryClientExtensions.cs │ └── ValueStopwatch.cs │ ├── Environment │ ├── EnvironmentExtensions.cs │ ├── EnvironmentSettingNames.cs │ ├── IEnvironment.cs │ └── SystemEnvironment.cs │ ├── ErrorCodes.cs │ ├── Eventing │ ├── DebugNotification.cs │ ├── DiagnosticNotification.cs │ ├── EventSources.cs │ ├── File │ │ ├── FileEvent.cs │ │ └── FileWatcherEventSource.cs │ ├── Host │ │ ├── FunctionIndexingEvent.cs │ │ ├── HostRestartEvent.cs │ │ └── HostStartEvent.cs │ ├── IScriptEventManager.cs │ ├── OutOfProc │ │ ├── Http │ │ │ ├── HttpWorkerErrorEvent.cs │ │ │ └── HttpWorkerRestartEvent.cs │ │ └── Rpc │ │ │ ├── RpcChannelEvent.cs │ │ │ ├── WorkerErrorEvent.cs │ │ │ └── WorkerRestartEvent.cs │ ├── ScriptEvent.cs │ ├── ScriptEventManager.cs │ └── StructuredLogging │ │ ├── StructuredLogEntry.cs │ │ └── StructuredLogEntryEvent.cs │ ├── Exceptions │ └── HttpForwardingException.cs │ ├── ExtensionBundle │ ├── BundlesServiceCollectionExtensions.cs │ ├── ExtensionBundleContentProvider.cs │ ├── ExtensionBundleHttpExtensions.cs │ ├── ExtensionBundleManager.cs │ ├── IExtensionBundleContentProvider.cs │ └── IExtensionBundleManager.cs │ ├── ExtensionRequirements │ ├── BundleRequirement.cs │ ├── ExtensionRequirementsInfo.cs │ ├── ExtensionRequirementsJsonContext.cs │ └── ExtensionStartupTypeRequirement.cs │ ├── Extensions │ ├── ActionExtensions.cs │ ├── AssemblyExtensions.cs │ ├── BindingMetadataExtensions.cs │ ├── CancellationExtensions.cs │ ├── DiagnosticExtensions.cs │ ├── ExceptionExtensions.cs │ ├── FileUtility.cs │ ├── FuncExtensions.cs │ ├── FunctionMetadataExtensions.cs │ ├── HttpRequestExtensions.cs │ ├── IDictionaryExtensions.cs │ ├── IMetricsLoggerExtensions.cs │ ├── IServiceProviderExtensions.cs │ ├── JObjectExtensions.cs │ ├── ProjectExtensions.cs │ ├── ScriptLoggingBuilderExtensions.cs │ ├── TaskExtensions.cs │ └── TokenExtensions.cs │ ├── ExternalStartupException.cs │ ├── FileProvisioning │ ├── FuncAppFileProvisionerFactory.cs │ ├── FuncAppFileProvisioningService.cs │ ├── IFuncAppFileProvisioner.cs │ ├── IFuncAppFileProvisionerFactory.cs │ └── PowerShell │ │ ├── PowerShellFileProvisioner.cs │ │ ├── profile.ps1 │ │ └── requirements.psd1 │ ├── FunctionConfigurationException.cs │ ├── GlobalSuppressions.cs │ ├── Host │ ├── DebugManager.cs │ ├── DebugStateProvider.cs │ ├── ExtensionBundleManagerValidator.cs │ ├── FileLoggingStatusManager.cs │ ├── FunctionAppValidationService.cs │ ├── FunctionMetadataManager.cs │ ├── FunctionMetadataProvider.cs │ ├── FunctionMetadataResult.cs │ ├── HostFunctionMetadataProvider.cs │ ├── HostIdValidator.cs │ ├── IDebugManager.cs │ ├── IDebugStateProvider.cs │ ├── IFileLoggingStatusManager.cs │ ├── IFunctionAppValidator.cs │ ├── IFunctionMetadataManager.cs │ ├── IFunctionMetadataProvider.cs │ ├── IHostFunctionMetadataProvider.cs │ ├── IScriptHostFactory.cs │ ├── IScriptHostLifecycleService.cs │ ├── IScriptHostManager.cs │ ├── IScriptJobHost.cs │ ├── IWorkerFunctionMetadataProvider.cs │ ├── Kubernetes │ │ ├── KubernetesClient.cs │ │ ├── KubernetesDistributedLockManager.cs │ │ └── KubernetesLockHandle.cs │ ├── MetadataJsonHelper.cs │ ├── MissingAzureFunctionsFolderValidator.cs │ ├── ProxyFunctionMetadata.cs │ ├── ProxyFunctionProvider.cs │ ├── ScriptHost.cs │ ├── ScriptHostIdProvider.cs │ ├── ScriptHostState.cs │ ├── ScriptInvocationArguments.cs │ └── ScriptJobHostExtensions.cs │ ├── HostConfigurationException.cs │ ├── HostDisposedException.cs │ ├── HostInitializationException.cs │ ├── HostNameProvider.cs │ ├── HostOptionsProvider.cs │ ├── HostedServiceManager.cs │ ├── Http │ ├── DefaultHttpProxyService.cs │ ├── DefaultHttpRouteManager.cs │ ├── IHttpProxyService.cs │ ├── IHttpRoutesManager.cs │ ├── RetryProxyHandler.cs │ └── ScriptInvocationRequestTransformer.cs │ ├── IHostOptionsProvider.cs │ ├── IManagedHostedService.cs │ ├── IO │ └── AutoRecoveringFileSystemWatcher.cs │ ├── InvalidHostServicesException.cs │ ├── JsonSerializerOptionsProvider.cs │ ├── ManagedDependencies │ ├── ManagedDependencyOptions.cs │ └── ManagedDependencyOptionsSetup.cs │ ├── Metrics │ ├── HostMetrics.cs │ └── IHostMetrics.cs │ ├── Models │ ├── ExtensionBundleDetails.cs │ ├── ExtensionPackageReference.cs │ ├── ExtensionReference.cs │ ├── ExtensionReferences.cs │ ├── ExtensionReferencesJsonContext.cs │ └── FunctionAppContentEditingState.cs │ ├── NullHostedService.cs │ ├── PlatformHelper.cs │ ├── Pools │ ├── ObjectPoolExtensions.cs │ ├── PoolFactory.cs │ └── PoolRental.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── RpcWorkerConfig.cs │ ├── RuntimeInformation │ ├── ISystemRuntimeInformation.cs │ └── SystemRuntimeInformation.cs │ ├── Sanitizer.cs │ ├── Scale │ ├── ApplicationPerformanceCounters.cs │ └── HostPerformanceManager.cs │ ├── ScriptConstants.cs │ ├── ScriptHostBuilderExtensions.cs │ ├── ScriptServiceCollectionExtensions.cs │ ├── SlidingWindow.cs │ ├── StorageProvider │ ├── BlobServiceClientProvider.cs │ ├── HostAzureBlobStorageProvider.cs │ ├── HostAzureTableStorageProvider.cs │ ├── IAzureTableStorageProvider.cs │ ├── StorageClientProvider.cs │ ├── StorageServiceUriOptions.cs │ └── TableServiceClientProvider.cs │ ├── Utility.cs │ ├── WebJobs.Script.csproj │ ├── Workers │ ├── ConsoleLog.cs │ ├── FunctionDataCache │ │ ├── FunctionDataCache.cs │ │ └── FunctionDataCacheConstants.cs │ ├── IScriptHostWorkerManager.cs │ ├── IWebHostWorkerManager.cs │ ├── IWorkerConsoleLogSource.cs │ ├── MessageExtensions │ │ └── ScriptInvocationContextExtensions.cs │ ├── Profiles │ │ ├── Conditions │ │ │ ├── EnvironmentCondition.cs │ │ │ ├── FalseCondition.cs │ │ │ ├── HostPropertyCondition.cs │ │ │ └── IWorkerProfileCondition.cs │ │ ├── IWorkerProfileConditionProvider.cs │ │ ├── IWorkerProfileManager.cs │ │ ├── WorkerDescriptionProfile.cs │ │ ├── WorkerProfileConditionDescriptor.cs │ │ ├── WorkerProfileConditionProvider.cs │ │ ├── WorkerProfileDescriptor.cs │ │ └── WorkerProfileManager.cs │ ├── Rpc │ │ ├── Configuration │ │ │ ├── DefaultWorkerConfigurationProvider.cs │ │ │ ├── DynamicWorkerConfigurationProvider.cs │ │ │ ├── ExplicitWorkerConfigurationProvider.cs │ │ │ ├── LanguageWorkerOptions.cs │ │ │ ├── LanguageWorkerOptionsSetup.cs │ │ │ ├── WorkerConfigurationProviderBase.cs │ │ │ ├── WorkerConfigurationResolver.cs │ │ │ ├── WorkerConfigurationResolverOptions.cs │ │ │ └── WorkerConfigurationResolverOptionsSetup.cs │ │ ├── IWorkerConfigurationProvider.cs │ │ ├── IWorkerConfigurationResolver.cs │ │ ├── RpcException.cs │ │ ├── RpcWorkerConstants.cs │ │ └── RpcWorkerDescription.cs │ ├── SharedMemoryDataTransfer │ │ ├── IMemoryMappedFileAccessor.cs │ │ ├── ISharedMemoryManager.cs │ │ ├── MemoryMappedFileAccessor.cs │ │ ├── MemoryMappedFileAccessorUnix.cs │ │ ├── MemoryMappedFileAccessorWindows.cs │ │ ├── SharedMemoryConstants.cs │ │ ├── SharedMemoryManager.cs │ │ ├── SharedMemoryMap.cs │ │ └── SharedMemoryObject.cs │ ├── WorkerConsoleLogService.cs │ ├── WorkerConsoleLogSource.cs │ ├── WorkerConstants.cs │ ├── WorkerDescription.cs │ ├── WorkerManagerState.cs │ ├── WorkerProcessArguments.cs │ ├── WorkerProcessCountOptions.cs │ ├── WorkerProcessInfo.cs │ └── WorkerStatus.cs │ ├── extensionrequirements.json │ ├── runtimeassemblies-relaxed.json │ ├── runtimeassemblies.json │ └── runtimes.json ├── stylecop.json ├── test ├── Directory.Build.targets ├── Directory.Packages.props ├── Resources │ ├── Directory.Packages.props │ ├── TestProjects │ │ ├── AssemblyLoadContextRace │ │ │ ├── AssemblyLoadContextRace.csproj │ │ │ ├── Function1.cs │ │ │ └── host.json │ │ ├── Dependency55 │ │ │ ├── Dependency55.csproj │ │ │ └── TypeGetter.cs │ │ ├── Dependency56 │ │ │ ├── Dependency56.csproj │ │ │ └── TypeGetter.cs │ │ ├── DotNetCustomHandler │ │ │ ├── DotNetCustomHandler.csproj │ │ │ ├── Program.cs │ │ │ ├── SimpleHttpTrigger │ │ │ │ └── function.json │ │ │ └── host.json │ │ ├── DotNetIsolated60 │ │ │ ├── DotNetIsolated60.csproj │ │ │ ├── HttpRequestDataFunction.cs │ │ │ ├── HttpRequestFunction.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── serviceDependencies.json │ │ │ │ └── serviceDependencies.local.json │ │ │ ├── QueueFunction.cs │ │ │ └── host.json │ │ ├── DotNetIsolatedUnsupportedWorker │ │ │ ├── DotNetIsolatedUnsupportedWorker.csproj │ │ │ ├── HttpRequestDataFunction.cs │ │ │ ├── HttpRequestFunction.cs │ │ │ ├── Program.cs │ │ │ ├── QueueFunction.cs │ │ │ └── host.json │ │ ├── EmptyScriptRoot │ │ │ └── host.json │ │ ├── MultipleDependencyVersions │ │ │ ├── MultipleDependencyVersions.cs │ │ │ ├── MultipleDependencyVersions.csproj │ │ │ └── host.json │ │ ├── NativeDependencyNoRuntimes │ │ │ ├── NativeDependencyNoRuntimes.cs │ │ │ ├── NativeDependencyNoRuntimes.csproj │ │ │ └── host.json │ │ ├── ReferenceOlderRuntimeAssembly │ │ │ ├── Properties │ │ │ │ ├── serviceDependencies.json │ │ │ │ └── serviceDependencies.local.json │ │ │ ├── ReferenceOlderRuntimeAssembly.cs │ │ │ ├── ReferenceOlderRuntimeAssembly.csproj │ │ │ └── host.json │ │ ├── TestFunctions │ │ │ ├── Functions.cs │ │ │ └── TestFunctions.csproj │ │ └── WebJobsStartupTests │ │ │ ├── Function1.cs │ │ │ ├── Startup.cs │ │ │ ├── WebJobsStartupTests.csproj │ │ │ └── host.json │ └── TestScripts │ │ ├── CSharp │ │ ├── AssembliesFromSharedLocation │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CosmosDBIn │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CosmosDBOut │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CosmosDBTrigger │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── CustomTrigger │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── FunctionExecutionContext │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── FunctionIndexingError │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Dynamic │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-FunctionAuth │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Model-v2 │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Model │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Redirect │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Routed │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-Scenarios │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTriggerToBlob │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── LoadScriptReference │ │ │ ├── class.csx │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── ManualTrigger │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── MissingAssemblies │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ ├── MobileTableIn │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── MobileTableOut │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── MultipleOutputs │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── MultipleTriggers │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── NotificationHubNative │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── NotificationHubOut │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── NotificationHubOutNotification │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── OneSecondTimer │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── QueueTriggerToBlob │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── QueueTriggerToBlobRichTypes │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── Scenarios │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── ServiceBusQueueTriggerAndOutput │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── ServiceBusTopicOutput │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── ServiceBusTopicTrigger │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── StorageReferenceV12 │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── TimeoutStopHost │ │ │ └── run.csx │ │ ├── TimeoutSync │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── TimeoutToken │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── TwilioReference │ │ │ ├── function.json │ │ │ └── run.csx │ │ └── host.json │ │ ├── CustomHeadersMiddleware │ │ ├── CSharp │ │ │ ├── HttpTrigger │ │ │ │ ├── function.json │ │ │ │ └── run.csx │ │ │ └── host.json │ │ └── Node │ │ │ ├── HttpTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ │ └── host.json │ │ ├── DirectLoad │ │ ├── Function1 │ │ │ └── function.json │ │ ├── Function2 │ │ │ └── function.json │ │ └── host.json │ │ ├── DotNet │ │ └── host.json │ │ ├── FunctionGeneration │ │ ├── HttpTrigger-CSharp │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── HttpTrigger-FSharp │ │ │ ├── function.json │ │ │ └── run.fsx │ │ └── host.json │ │ ├── Invalid │ │ └── host.json │ │ ├── ListenerExceptions │ │ ├── ListenerStartupException │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── TimerTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ └── host.json │ │ ├── NoFunction │ │ └── host.json │ │ ├── Node │ │ ├── BlobTriggerToBlob │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── Common │ │ │ └── test.js │ │ ├── CosmosDBIn │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── CosmosDBOut │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── CosmosDBTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── EventHubSender │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── EventHubTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTrigger-Scenarios │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTriggerByteArray │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTriggerExpressApi │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTriggerPromise │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── HttpTriggerShared │ │ │ └── function.json │ │ ├── HttpTriggerToBlob │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── Invalid │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── ManualTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MobileTableIn │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MobileTableOut │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MultipleExports │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MultipleInputs │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MultipleOutputs │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── NotificationHubNative │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── NotificationHubOut │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── QueueTriggerByteArray │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── QueueTriggerToBlob │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── Scenarios │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── ServiceBusQueueTriggerAndOutput │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── ServiceBusTopicOutput │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── ServiceBusTopicTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── SingleNamedExport │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── TableIn │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── TableOut │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── TimeoutSync │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── TimerTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── WebHookTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── functions.tests.js │ │ ├── host.json │ │ ├── index.js │ │ └── package.json │ │ ├── NodeWithBundles │ │ ├── HttpTriggerNoAuth │ │ │ ├── function.json │ │ │ └── index.js │ │ └── host.json │ │ ├── OutOfDateExtension │ │ ├── bin │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.DurableTask.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ │ ├── Microsoft.Azure.WebJobs.ServiceBus.dll │ │ │ └── extensions.json │ │ └── host.json │ │ ├── OutOfRange │ │ └── host.json │ │ ├── Proxies │ │ ├── Ping │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── PingAuth │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── PingMakeResponse │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── PingRoute │ │ │ ├── function.json │ │ │ └── run.csx │ │ ├── host.json │ │ └── proxies.json │ │ ├── ProxiesOnly │ │ ├── host.json │ │ └── proxies.json │ │ └── WarmupFunction │ │ ├── Ping │ │ ├── function.json │ │ └── run.csx │ │ ├── host.json │ │ ├── proxies.json │ │ └── warmup │ │ ├── function.json │ │ └── run.csx ├── TestWorkers │ └── ProbingPaths │ │ └── functionsworkers │ │ ├── dotnet-isolated │ │ └── 1.0.0 │ │ │ └── worker.config.json │ │ ├── java │ │ ├── 2.18.0 │ │ │ └── worker.config.json │ │ ├── 2.18.1 │ │ │ └── worker.config.json │ │ └── 2.19.0 │ │ │ └── worker.config.json │ │ └── node │ │ └── 3.10.1 │ │ └── worker.config.json ├── WebJobs.Script.Abstractions │ ├── BindingMetadataTests.cs │ └── WebJobs.Script.Tests.Abstractions.csproj ├── WebJobs.Script.Tests.Integration │ ├── ApplicationInsights │ │ ├── ApplicationInsightsCSharpEndToEndTests.cs │ │ ├── ApplicationInsightsEndToEndTestsBase.cs │ │ ├── ApplicationInsightsIgnoredNodeEndToEndTests.cs │ │ ├── ApplicationInsightsNodeEndToEndTests.cs │ │ └── ApplicationInsightsTestFixture.cs │ ├── ContainerManagement │ │ ├── AtlasContainerInitializationHostedServiceTests.cs │ │ └── LegionContainerInitializationHostedServiceTests.cs │ ├── Controllers │ │ ├── ControllerScenarioTestFixture.cs │ │ ├── Keys │ │ │ ├── AuthDisabledScenario.cs │ │ │ ├── DeleteFunctionKeysScenario.cs │ │ │ ├── DeleteHostFunctionKeysScenario.cs │ │ │ ├── DeleteHostSystemKeysScenario.cs │ │ │ ├── GetFunctionKeysScenario.cs │ │ │ ├── GetHostFunctionKeysScenario.cs │ │ │ ├── GetHostMasterKeyScenario.cs │ │ │ ├── GetHostSystemKeyScenario.cs │ │ │ ├── GetHostSystemKeysScenario.cs │ │ │ ├── KeyManagementFixture.cs │ │ │ ├── PostFunctionKeysScenario.cs │ │ │ ├── PostHostFunctionKeyScenario.cs │ │ │ ├── PostHostSystemKeyScenario.cs │ │ │ ├── PutFunctionKeysScenario.cs │ │ │ ├── PutHostFunctionKeyScenario.cs │ │ │ └── PutHostSystemKeyScenario.cs │ │ └── WarmupScenarios.cs │ ├── CosmosDB │ │ ├── CosmosDBCSharpEndToEndTests.cs │ │ ├── CosmosDBEndToEndTestsBase.cs │ │ └── CosmosDBNodeEndToEndTests.cs │ ├── Diagnostics │ │ ├── DiagnosticEventTableStorageRepositoryTests.cs │ │ ├── DiagnosticEventTestUtils.cs │ │ └── MetricsEventManagerTests.cs │ ├── EventHubs │ │ └── EventHubsEndToEndTestsBase.cs │ ├── Fixtures │ │ └── AzuriteFixture.cs │ ├── GlobalSuppressions.cs │ ├── Host │ │ ├── BlobStorageSecretsRepositoryTests.cs │ │ ├── HostIdValidatorTests.cs │ │ ├── ScriptHostManagerTests.cs │ │ ├── SecretsRepositoryTests.cs │ │ ├── StandbyManager │ │ │ ├── StandbyInitializationTests.cs │ │ │ ├── StandbyManagerE2ETestBase.cs │ │ │ ├── StandbyManagerE2ETests_Linux.cs │ │ │ └── StandbyManagerE2ETests_Windows.cs │ │ ├── WebJobsScriptHostServiceTests.cs │ │ ├── WebScriptHostManagerTests.cs │ │ └── WebScriptHostManagerTimeoutTests.cs │ ├── KubernetesDistributedLockManagerTests.cs │ ├── Management │ │ ├── AzureStorageInfoValueTests.cs │ │ ├── ContainerFunctionExecutionActivityTests.cs │ │ ├── FunctionsSyncManagerTests.cs │ │ ├── HostAssignmentContextTests.cs │ │ ├── InstanceControllerTests.cs │ │ ├── InstanceManagerTests.cs │ │ ├── LegionInstanceManagerTests.cs │ │ ├── LinuxContainerActivityPublisherTests.cs │ │ ├── ManagedIdentityTokenProviderTests.cs │ │ ├── MeshServiceClientTests.cs │ │ ├── PackageDownloadHandlerTests.cs │ │ ├── Payload │ │ │ ├── DurableHasHubNameAndOrchestrationConfigPayload.json │ │ │ ├── DurableHasStorageAndActivityConfigPayload.json │ │ │ ├── DurableMsSQLProviderPayload.json │ │ │ └── EmptyDurablePayload.json │ │ ├── RunFromPackageContextTests.cs │ │ └── RunFromPackageHandlerTests.cs │ ├── Middleware │ │ ├── AllowSynchronousIOMiddlewareTests.cs │ │ ├── CustomHeadersMiddlewareCSharpEndToEndTests.cs │ │ ├── CustomHeadersMiddlewareEndToEndTestsBase.cs │ │ ├── CustomHeadersMiddlewareNodeEndToEndTests.cs │ │ └── FunctionInvocationMiddlewareTests.cs │ ├── PreJIT │ │ └── JitPreparesTest.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── launchSettings.json │ ├── Rpc │ │ ├── FunctionDispatcherEndToEndTests.cs │ │ ├── LanguageWorkerChannelManagerEndToEndTests.cs │ │ └── WorkerConcurrencyManagerEndToEndTests.cs │ ├── Scale │ │ └── TableStorageScaleMetricsRepositoryTests.cs │ ├── ScriptHostEndToEnd │ │ ├── DirectLoadEndToEndTests.cs │ │ ├── EndToEndTimeoutTests.cs │ │ ├── FunctionGeneratorEndToEndTests.cs │ │ ├── NodeContentTests.cs │ │ ├── NodeScriptHostTests.cs │ │ ├── RawAssemblyEndToEndTests.cs │ │ └── ScriptHostEndToEndTestFixture.cs │ ├── Security │ │ └── SecretManagerProviderTests.cs │ ├── Storage │ │ ├── AzureBlobStorageProviderTests.cs │ │ ├── AzureTableStorageProviderTests.cs │ │ ├── BlobServiceClientProviderTests.cs │ │ ├── StorageEndToEndTests.cs │ │ ├── StorageVersionUsageTests.cs │ │ └── TableServiceProviderTests.cs │ ├── TestFunctionHost.cs │ ├── WebHostEndToEnd │ │ ├── CSharpEndToEndTests.cs │ │ ├── CSharpPrecompiledEndToEndTests.cs │ │ ├── CSharpPrecompiledTestFixture.cs │ │ ├── CodelessEndToEndTests.cs │ │ ├── CodelessEndToEndTests_Data.cs │ │ ├── DiagnosticsEndToEndTests.cs │ │ ├── DrainModeEndToEndTests.cs │ │ ├── DrainModeResumeEndToEndTests.cs │ │ ├── DrainModeStatusEndToEndTests.cs │ │ ├── EndToEndTestFixture.cs │ │ ├── EndToEndTestsBase.cs │ │ ├── FunctionAssemblyLoadContextEndToEndTests.cs │ │ ├── FunctionsControllerEndToEndTests.cs │ │ ├── HostConfigurationExceptionTests.cs │ │ ├── HostDisposedExceptionTests.cs │ │ ├── HostProcessLauncher.cs │ │ ├── InterceptingScriptHostBuilder.cs │ │ ├── JwtTokenAuthTests.cs │ │ ├── MetricsEndToEndTests_FlexConsumption.cs │ │ ├── MultiLanguageEndToEndTests.cs │ │ ├── NodeEndToEndTests.cs │ │ ├── NodeHostRestartEndToEndTests.cs │ │ ├── NullDependencyValidator.cs │ │ ├── ProxyEndToEndTests.cs │ │ ├── SWAEndToEndTests.cs │ │ ├── SamplesEndToEndTests_CSharp.cs │ │ ├── SamplesEndToEndTests_CustomHandler.cs │ │ ├── SamplesEndToEndTests_CustomHandlerRetry.cs │ │ ├── SamplesEndToEndTests_HttpWorker.cs │ │ ├── SamplesEndToEndTests_Java.cs │ │ ├── SamplesEndToEndTests_Node.cs │ │ ├── SamplesEndToEndTests_Node_MultipleProcesses.cs │ │ ├── SamplesEndToEndTests_Node_MultipleProcessesNoBundle.cs │ │ ├── SamplesEndToEndTests_Node_Retry.cs │ │ ├── SamplesEndToEndTests_PowerShell.cs │ │ ├── SamplesEndToEndTests_Python.cs │ │ ├── SamplesTestHelpers.cs │ │ ├── SpecializationE2ETests.cs │ │ ├── WarmupFunctionEndToEndTests.cs │ │ ├── WebHostStartupEndToEndTests.cs │ │ └── WebJobsStartupEndToEndTests.cs │ ├── WebJobs.Script.Tests.Integration.csproj │ └── xunit.runner.json ├── WebJobs.Script.Tests.Shared │ ├── DelegatedConfigureBuilder.cs │ ├── FunctionExecutionEvent.cs │ ├── FunctionTraceEvent.cs │ ├── HttpTestHelpers.cs │ ├── LoggerFactoryExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TaskExtensions.cs │ ├── TempDirectory.cs │ ├── TestChangeTokenSource.cs │ ├── TestConfigurationBuilderExtensions.cs │ ├── TestDiagnosticEventRepository.cs │ ├── TestDiagnosticEventRepositoryFactory.cs │ ├── TestEnvironment.cs │ ├── TestEventGenerator.cs │ ├── TestFunctionMetadataManager.cs │ ├── TestHandler.cs │ ├── TestHelpers.Constants.cs │ ├── TestHelpers.Functions.cs │ ├── TestHelpers.cs │ ├── TestHostBuilderExtensions.cs │ ├── TestHostExtensions.cs │ ├── TestInvoker.cs │ ├── TestLogger.cs │ ├── TestLoggerProvider.cs │ ├── TestLoggerProviderFactory.cs │ ├── TestMetricsLogger.cs │ ├── TestMetricsTracker.cs │ ├── TestNameResolver.cs │ ├── TestOptionsFactory.cs │ ├── TestOptionsMonitor.cs │ ├── TestOutputHelperLogger.cs │ ├── TestOutputHelperLoggerProvider.cs │ ├── TestScaleMonitor.cs │ ├── TestScopedEnvironmentVariable.cs │ ├── TestScopedSettings.cs │ ├── TestScriptEventManager.cs │ ├── TestSecretManager.cs │ ├── TestSecretManagerProvider.cs │ ├── TestServiceCollectionExtensions.cs │ ├── TestServiceProviderExtensions.cs │ ├── TestTelemetryChannel.cs │ ├── TestTraits.cs │ ├── TestTypeLocator.cs │ ├── TestWebHostBuilderExtensions.cs │ ├── TimeSpanExtensions.cs │ └── WebJobs.Script.Tests.Shared.csproj └── WebJobs.Script.Tests │ ├── Binding │ ├── ActionResults │ │ ├── RawScriptResultTests.cs │ │ └── ScriptObjectResultTests.cs │ ├── CoreExtensionsScriptBindingProviderTests.cs │ ├── ExtensionBindingTests.cs │ ├── FunctionBindingTests.cs │ ├── GeneralScriptBindingProviderTests.cs │ └── HttpBindingTests.cs │ ├── Config │ └── ScriptTypeLocatorTests.cs │ ├── Configuration │ ├── ActiveHostConfigurationSourceTests.cs │ ├── AggregatorConfigurationTests.cs │ ├── AppServiceOptionsTests.cs │ ├── ApplicationInsightsConfigurationTests.cs │ ├── ApplicationInsightsLoggerOptionsSetupTests.cs │ ├── ConsoleLoggingOptionsSetupTests.cs │ ├── CustomHttpHeadersOptionsSetupTests.cs │ ├── DefaultDependencyValidatorTests.cs │ ├── ExpectedDependencyBuilderTests.cs │ ├── ExtensionBundleConfigHelperTest.cs │ ├── ExtensionRequirementOptionsTests.cs │ ├── ExtensionsSystemOptionsSetupTests.cs │ ├── ExtensionsSystemOptionsTests.cs │ ├── ExternalConfigurationStartupValidatorTests.cs │ ├── FunctionsHostingConfigOptionsSetupTest.cs │ ├── FunctionsHostingConfigOptionsTest.cs │ ├── FunctionsHostingConfigProviderTest.cs │ ├── HostBuiltChangeTokenSourceTests.cs │ ├── HostConfigurationProfileTests.cs │ ├── HostHstsOptionsSetupTests.cs │ ├── HostJsonFileConfigurationOptionsTests.cs │ ├── HostJsonFileConfigurationSourceTests.cs │ ├── HttpBodyControlOptionsTests.cs │ ├── HttpOptionsSetupTests.cs │ ├── HttpWorkerOptionsSetupTests.cs │ ├── LanguageWorkerOptionsSetupTests.cs │ ├── LoggingConfigurationTests.cs │ ├── PrimaryHostCoordinatorOptionsSetupTests.cs │ ├── ScaleMonitorOptionsSetupTests.cs │ ├── ScriptApplicationHostOptionsSetupTests.cs │ ├── ScriptHostRecycleOptionsSetupTests.cs │ ├── ScriptHostRecycleOptionsTests.cs │ ├── ScriptJobHostOptionsSetupTests.cs │ ├── ScriptJobHostOptionsTests.cs │ ├── ScriptTelemetryInitializerTests.cs │ ├── ScriptTelemetryProcessorTests.cs │ ├── TransmissionStatusHandlerTest.cs │ └── WebScriptHostConfigurationSourceTests.cs │ ├── ContainerManagment │ └── LinuxContainerInitializationHostedServiceTests.cs │ ├── Controllers │ └── Admin │ │ ├── FunctionsControllerTests.cs │ │ ├── HostControllerTests.cs │ │ └── KeysControllerTests.cs │ ├── DefaultScriptWebHookProviderTests.cs │ ├── DependencyTests.cs │ ├── Description │ ├── DotNet │ │ ├── CSharp │ │ │ ├── CSharpCompilationServiceTests.cs │ │ │ ├── CSharpCompilationTests.cs │ │ │ ├── CSharpFunctionSignatureTests.cs │ │ │ └── CacheMetadataResolverTests.cs │ │ ├── DependencyHelperTests.cs │ │ ├── DotNetCompilationServiceFactoryTests.cs │ │ ├── DotNetFunctionDescriptorProviderTests.cs │ │ ├── DotNetFunctionInvokerTests.cs │ │ ├── DynamicFunctionAssemblyLoadContextTests.cs │ │ ├── ExtensionSharedAssemblyProviderTests.cs │ │ ├── FunctionAssemblyLoadContextTests.cs │ │ ├── PackageAssemblyResolverTests.cs │ │ ├── PackageManagerTests.cs │ │ ├── RawAssemblyCompilationTests.cs │ │ └── TestFiles │ │ │ ├── DepsFiles │ │ │ ├── RidNativeDeps │ │ │ │ └── function.deps.json │ │ │ └── function.deps.json │ │ │ └── PackageReferences │ │ │ ├── FunctionWithNoProject │ │ │ └── function.json │ │ │ ├── ProjectWithLockMatch │ │ │ ├── function.proj │ │ │ └── test.assets.json │ │ │ ├── ProjectWithMismatchedLock │ │ │ ├── MismatchedPackageVersions │ │ │ │ ├── function.proj │ │ │ │ └── test.assets.json │ │ │ └── MismatchedProjectDependencies │ │ │ │ ├── function.proj │ │ │ │ └── test.assets.json │ │ │ └── ProjectWithoutLock │ │ │ └── function.proj │ ├── FunctionAppValidationServiceTests.cs │ ├── FunctionDescriptorProviderTests.cs │ ├── FunctionEntryPointResolverTests.cs │ ├── FunctionGeneratorTests.cs │ ├── FunctionGroupListenerDecoratorTests.cs │ ├── FunctionInvokerBaseTests.cs │ ├── FunctionMetadataTests.cs │ ├── Proxy │ │ └── ProxyFunctionDescriptorProviderTests.cs │ └── Worker │ │ ├── TestWorkerFunctionInvoker.cs │ │ ├── WorkerFunctionDescriptorProviderTests.cs │ │ └── WorkerFunctionInvokerTests.cs │ ├── Diagnostics │ ├── ApplicationInsightsMetricExporterOptionsTests.cs │ ├── ApplicationInsightsMetricExporterTests.cs │ ├── DebugStateProviderTests.cs │ ├── DiagnosticEventLoggerTests.cs │ ├── DiagnosticListenerServiceTests.cs │ ├── FastLoggerTests.cs │ ├── FileLoggerProviderTests.cs │ ├── FileLoggerTests.cs │ ├── FileWriterTests.cs │ ├── ForwardingLoggerAttributeTests.cs │ ├── ForwardingLoggerFactoryTests.cs │ ├── ForwardingLoggerTests.cs │ ├── FunctionInstanceLoggerTests.cs │ ├── HealthChecks │ │ ├── DynamicHealthCheckServiceTests.cs │ │ ├── HealthCheckExtensionsTests.cs │ │ ├── HealthCheckResponseWriterTests.cs │ │ ├── HealthCheckWaitMiddlewareTests.cs │ │ ├── ScriptHostHealthCheckTests.cs │ │ ├── TelemetryHealthCheckPublisherTests.cs │ │ ├── WebHostHealthCheckTests.cs │ │ └── WebJobsStorageHealthCheckTests.cs │ ├── HostPerformanceManagerTests.cs │ ├── KubernetesEventGeneratorTests.cs │ ├── LinuxAppServiceEventGeneratorTests.cs │ ├── LinuxAppServiceFileLoggerTests.cs │ ├── LinuxContainerEventGeneratorTests.cs │ ├── LinuxContainerEventGeneratorWithConsoleOutputTests.cs │ ├── LinuxEventGeneratorTestData.cs │ ├── MockLinuxAppServiceFileLogger.cs │ ├── MockLinuxAppServiceFileLoggerFactory.cs │ ├── OpenTelemetry │ │ ├── OpenTelemetryConfigurationExtensionsTests.cs │ │ └── OpenTelemetryEventListenerTests.cs │ ├── TelemetryClientExtensionsTests.cs │ ├── ValueStopwatchTests.cs │ └── WebhostMetricsLoggerDecoratorTests.cs │ ├── Environment │ └── EnvironmentTests.cs │ ├── Eventing │ ├── DeferredLoggerProviderTests.cs │ ├── DiagnosticLoggerTests.cs │ ├── File │ │ └── FileWatcherEventSourceTests.cs │ ├── ScriptEventManagerTests.cs │ ├── StructuredLogEntryEventTests.cs │ ├── StructuredLogEntryTests.cs │ ├── SystemLoggerProviderTests.cs │ └── SystemLoggerTests.cs │ ├── ExtensionBundle │ ├── ExtensionBundleContentProviderTests.cs │ ├── ExtensionBundleHttpExtensionsTests.cs │ └── ExtensionBundleManagerTests.cs │ ├── ExtensionManagerTests.cs │ ├── Extensions │ ├── BindingMetadataExtensionsTests.cs │ ├── EnvironmentExtensionsTests.cs │ ├── ExceptionExtensionsTests.cs │ ├── FunctionMetadataExtensionsTests.cs │ ├── HttpContextExtensionsTests.cs │ ├── HttpRequestExtensionsTest.cs │ ├── HttpScriptInvocationContextExtensionTests.cs │ ├── IDictionaryExtensionsTests.cs │ ├── InboundGrpcEventExtensionsTests.cs │ ├── ProjectExtensionsTests.cs │ ├── ScriptBindingContextTests.cs │ ├── ScriptJwtBearerExtensionsTests.cs │ ├── ScriptLoggingBuilderExtensionsTests.cs │ └── ServiceProviderExtensionsTests.cs │ ├── FeatureFlagsTests.cs │ ├── FileMonitoringServiceTests.cs │ ├── FileProvisioning │ ├── FuncAppFileProvisionerFactoryTests.cs │ ├── FuncAppFileProvisioningServiceTests.cs │ ├── PowerShellFileProvisionerTests.cs │ └── TestPowerShellFileProvisioner.cs │ ├── FunctionDispatcherShutdownManagerTests.cs │ ├── FunctionMetadataManagerTests.cs │ ├── FunctionMetadataProviderTests.cs │ ├── FunctionsSyncServiceTests.cs │ ├── GlobalSuppressions.cs │ ├── GrpcMessageExtensionUtilitiesTests.cs │ ├── Handlers │ ├── ExceptionProcessingHandlerTests.cs │ ├── WebScriptHostExceptionHandlerTests.cs │ └── WebScriptHostHandlerTests.cs │ ├── Helpers │ ├── EncryptionHelperTests.cs │ └── SecretsUtilityTest.cs │ ├── HostFunctionMetadataProviderTests.cs │ ├── HostNameProviderTests.cs │ ├── HostsOptionsProviderTests.cs │ ├── HttpMiddleware │ ├── DefaultMiddlewarePipelineTests.cs │ └── JobHostPipelineMiddlewareTests.cs │ ├── HttpProxyService │ ├── DefaultHttpProxyServiceTests.cs │ ├── RetryProxyHandlerTests.cs │ └── ScriptInvocationRequestTransformerTests.cs │ ├── HttpWorker │ ├── DefaultHttpWorkerServiceTests.cs │ ├── HttpScriptInvocationResultExtensionsTests.cs │ └── HttpWorkerTestUtilities.cs │ ├── IO │ ├── AutoRecoveringFileSystemWatcherTests.cs │ └── FileUtilityTests.cs │ ├── ManagedDependencies │ └── ManagedDependencyOptionsSetupTest.cs │ ├── Managment │ ├── FunctionsSyncManagerTests.cs │ ├── VirtualFileSystemFacts.cs │ └── WebFunctionsManagerTests.cs │ ├── MetadataJsonHelperTests.cs │ ├── Metrics │ ├── FlexConsumptionMetricsPublisherTests.cs │ ├── HostMetricsProviderTests.cs │ ├── HostMetricsTests.cs │ ├── LinuxContainerLegionMetricsPublisherTests.cs │ └── LinuxContainerMetricsPublisherTests.cs │ ├── Microsoft.Azure.WebJobs.Script.WebHost.deps.json │ ├── Middleware │ ├── AppServiceHeaderFixupMiddlewareTests.cs │ ├── CorsConfigurationMiddlewareTests.cs │ ├── CustomHttpHeadersMiddlewareTests.cs │ ├── ExceptionMiddlewareTests.cs │ ├── HostWarmupMiddlewareTests.cs │ ├── HostnameFixupMiddlewareTests.cs │ ├── HstsConfigurationMiddlewareTests.cs │ ├── HttpRequestBodySizeMiddlewareTests.cs │ ├── HttpThrottleMiddlewareTests.cs │ └── SystemTraceMiddlewareTests.cs │ ├── MockNullLoggerFactory.cs │ ├── Pools │ ├── PoolFactoryTests.cs │ └── PoolRentalTests.cs │ ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── ProxyFunctionProviderTests.cs │ ├── Resources │ └── FileProvisioning │ │ └── PowerShell │ │ ├── PSGalleryEmptyFeed.xml │ │ ├── PSGallerySampleFeed.xml │ │ ├── profile.ps1 │ │ ├── requirements_PSGalleryOffline.psd1 │ │ └── requirements_PSGalleryOnline.psd1 │ ├── RuntimeAssembliesInfoTests.cs │ ├── RuntimeInformation │ └── TestSystemRuntimeInformation.cs │ ├── SanitizerTests.cs │ ├── ScriptHostIdProviderTests.cs │ ├── ScriptHostTests.cs │ ├── ScriptSettingsManagerTests.cs │ ├── ScriptStartupTypeDiscovererTests.cs │ ├── ScriptWebHostEnvironmentTests.cs │ ├── Security │ ├── AuthUtilityTests.cs │ ├── Authorization │ │ └── FunctionAuthorizationHandlerTests.cs │ ├── ContainerAppsSecretsRepositoryTests.cs │ ├── DataProtectionKeyValueConverterTests.cs │ ├── KeyVaultSecretsRepositoryTests.cs │ ├── KubernetesSecretsRepositoryTests.cs │ ├── ScriptSecretSerializerTests.cs │ ├── ScriptSecretSerializerV0Tests.cs │ ├── ScriptSecretSerializerV1Tests.cs │ ├── SecretGeneratorTests.cs │ ├── SecretManagerTests.cs │ └── SimpleKubernetesClientTests.cs │ ├── ServiceManagers │ └── HostedServiceManagerTests.cs │ ├── SlidingWindowTests.cs │ ├── StandbyManagerTests.cs │ ├── StartupContextProviderTests.cs │ ├── StaticAnalysisTests.cs │ ├── TestFixture │ ├── ExtensionRequirementOptionsTests │ │ ├── EmptyFile.json │ │ ├── FunctionsHostingEnvironmentConfig.json │ │ ├── FunctionsHostingEnvironmentConfig_bundlesOnly.json │ │ └── FunctionsHostingEnvironmentConfig_extensionsOnly.json │ └── HostOptionsProviderTests │ │ ├── TestBasicBindings.json │ │ ├── TestBasicConcurrency.json │ │ ├── TestDefaultConcurrency.json │ │ ├── TestIrregularNamingBindings.json │ │ ├── TestMultipleBindings.json │ │ ├── TestWihtoutExtensionsAttributeBindings.json │ │ └── TestWihtoutIOptionsFormatter.json │ ├── TestUtils.cs │ ├── TestWorkers │ ├── worker1 │ │ ├── 1.bat │ │ └── worker.config.json │ └── worker2 │ │ ├── 2.bat │ │ └── worker.config.json │ ├── TokenExpirationServiceTests.cs │ ├── UtilityTests.cs │ ├── Utils │ └── TokenExtensionTests.cs │ ├── WebJobs.Script.Tests.csproj │ ├── WebJobsScriptHostServiceTests.cs │ ├── WebScriptHostBuilderExtensionsTests.cs │ ├── WorkerFunctionMetadataProviderTests.cs │ ├── Workers │ ├── DefaultWorkerProcessFactoryTests.cs │ ├── FunctionDataCacheTests.cs │ ├── Http │ │ ├── HttpFunctionInvocationDispatcherTests.cs │ │ ├── HttpWorkerChannelTests.cs │ │ ├── HttpWorkerFunctionProviderTests.cs │ │ └── HttpWorkerProcessTests.cs │ ├── MemoryMappedFileAccessorTests.cs │ ├── MockCacheAwareReadObject.cs │ ├── Profiles │ │ ├── EnvironmentConditionTests.cs │ │ ├── FalseConditionTests.cs │ │ ├── HostPropertyConditionTests.cs │ │ ├── ProfilesTestUtilities.cs │ │ ├── WorkerDescriptionProfileTests.cs │ │ ├── WorkerProfileConditionDescriptorTests.cs │ │ └── WorkerProfileManagerTests.cs │ ├── Rpc │ │ ├── AspNetCoreGrpcServerTests.cs │ │ ├── DynamicWorkerConfigurationProviderTests.cs │ │ ├── ExtensionsCompositeEndpointDataSourceTests.cs │ │ ├── GrpcCapabilitiesTests.cs │ │ ├── GrpcMessageConversionExtensionsTests.cs │ │ ├── GrpcServerConfigTests.cs │ │ ├── GrpcWorkerChannelTests.cs │ │ ├── JobHostRpcWorkerChannelManagerTests.cs │ │ ├── OrderedInvocationDispatcherTests.cs │ │ ├── Resources │ │ │ └── functions.png │ │ ├── RpcFunctionDispatcherLoadBalancerTests.cs │ │ ├── RpcFunctionInvocationDispatcherTests.cs │ │ ├── RpcInitializationServiceTests.cs │ │ ├── RpcSharedMemoryTests.cs │ │ ├── RpcWorkerConfigTestUtilities.cs │ │ ├── RpcWorkerConfigTests.cs │ │ ├── RpcWorkerProcessTests.cs │ │ ├── TestFunctionRpcService.cs │ │ ├── TestRpcServer.cs │ │ ├── TestRpcWorkerChannel.cs │ │ ├── TestRpcWorkerChannelFactory.cs │ │ ├── TestRpcWorkerChannelManager.cs │ │ ├── TestRpcWorkerConfig.cs │ │ ├── WebHostRpcWorkerChannelManagerTests.cs │ │ ├── WorkerConcurrencyManagerTest.cs │ │ ├── WorkerConfigurationProviderBaseTests.cs │ │ ├── WorkerConfigurationResolverOptionsSetupTests.cs │ │ └── WorkerConfigurationResolverTestsHelper.cs │ ├── ScriptInvocationContextExtensionsTests.cs │ ├── SharedMemoryManagerTests.cs │ ├── SharedMemoryMapTests.cs │ ├── TestWorkerProcess.cs │ └── WorkerConsoleLogServiceTests.cs │ └── xunit.runner.json └── tools ├── Clean.targets └── ExtensionsMetadataGenerator ├── Directory.Build.props ├── Directory.Packages.props ├── Directory.Version.props ├── ExtensionsMetadataGenerator.sln ├── key.snk ├── src ├── ExtensionsMetadataGenerator.Console │ ├── ConsoleLogger.cs │ ├── ExtensionReference.cs │ ├── ExtensionsMetadataGenerator.Console.csproj │ ├── ExtensionsMetadataGenerator.cs │ ├── GlobalSuppressions.cs │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ └── runtimeconfig.template.json ├── ExtensionsMetadataGenerator │ ├── BuildTasks │ │ ├── GenerateFunctionsExtensionsMetadata.cs │ │ └── RemoveRuntimeDependencies.cs │ ├── DotNetMuxer.cs │ ├── ExtensionsMetadataGenerator.csproj │ ├── GlobalSuppressions.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── Targets │ │ ├── Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.props │ │ └── Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator.targets │ └── updateruntimeassemblies.ps1 └── stylecop.json └── test ├── ExtensionsMetadataGeneratorTests ├── ExistingRuntimeAssemblies.txt ├── ExtensionsMetadataGeneratorTests.cs ├── ExtensionsMetadataGeneratorTests.csproj ├── GlobalSuppressions.cs ├── RuntimeAssembliesUpdateTests.cs ├── TestStartupAttribute.cs └── TestWebJobsStartup.cs ├── TestProject_Core21 ├── Startup.cs └── TestProject_Core21.csproj ├── TestProject_Core22 ├── Startup.cs └── TestProject_Core22.csproj └── TestProject_Razor ├── AssemblyAttribute.cs ├── Startup.cs └── TestProject_Razor.csproj /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/ISSUE_TEMPLATE/General_question.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/notebooks/README.md -------------------------------------------------------------------------------- /.github/notebooks/issues.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/notebooks/issues.github-issues -------------------------------------------------------------------------------- /.github/notebooks/prs.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/notebooks/prs.github-issues -------------------------------------------------------------------------------- /.github/notebooks/sprint.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/notebooks/sprint.github-issues -------------------------------------------------------------------------------- /.github/policies/issue.add-no-recent-activity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.add-no-recent-activity.yml -------------------------------------------------------------------------------- /.github/policies/issue.assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.assign.yml -------------------------------------------------------------------------------- /.github/policies/issue.close-duplicate-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.close-duplicate-issues.yml -------------------------------------------------------------------------------- /.github/policies/issue.close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.close-stale-issues.yml -------------------------------------------------------------------------------- /.github/policies/issue.flag-for-triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.flag-for-triage.yml -------------------------------------------------------------------------------- /.github/policies/issue.prevent-auto-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.prevent-auto-close.yml -------------------------------------------------------------------------------- /.github/policies/issue.remove-needs-author-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.remove-needs-author-feedback.yml -------------------------------------------------------------------------------- /.github/policies/issue.remove-needs-triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/issue.remove-needs-triage.yml -------------------------------------------------------------------------------- /.github/policies/pullrequest.all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/policies/pullrequest.all.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.gitignore -------------------------------------------------------------------------------- /.sscignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.sscignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/CodeQL.yml -------------------------------------------------------------------------------- /CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/CustomDictionary.xml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/LICENSE_APACHE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WebJobs.Script.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/WebJobs.Script.sln -------------------------------------------------------------------------------- /eng/actions/backport/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/actions/backport/action.yml -------------------------------------------------------------------------------- /eng/actions/backport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/actions/backport/index.js -------------------------------------------------------------------------------- /eng/build/Engineering.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Engineering.props -------------------------------------------------------------------------------- /eng/build/Engineering.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Engineering.targets -------------------------------------------------------------------------------- /eng/build/PlaceholderSimulation.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/PlaceholderSimulation.props -------------------------------------------------------------------------------- /eng/build/Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Release.props -------------------------------------------------------------------------------- /eng/build/Release.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Release.targets -------------------------------------------------------------------------------- /eng/build/RepositoryInfo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/RepositoryInfo.targets -------------------------------------------------------------------------------- /eng/build/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Version.props -------------------------------------------------------------------------------- /eng/build/Version.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Version.targets -------------------------------------------------------------------------------- /eng/build/Workers.Dotnet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.Dotnet.props -------------------------------------------------------------------------------- /eng/build/Workers.Java.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.Java.props -------------------------------------------------------------------------------- /eng/build/Workers.Node.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.Node.props -------------------------------------------------------------------------------- /eng/build/Workers.Powershell.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.Powershell.props -------------------------------------------------------------------------------- /eng/build/Workers.Python.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.Python.props -------------------------------------------------------------------------------- /eng/build/Workers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/Workers.props -------------------------------------------------------------------------------- /eng/build/ZipPublish.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/build/ZipPublish.targets -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/host.benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/host.benchmarks.yml -------------------------------------------------------------------------------- /eng/ci/host.coldstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/host.coldstart.yml -------------------------------------------------------------------------------- /eng/ci/host.metrics-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/host.metrics-monitor.yml -------------------------------------------------------------------------------- /eng/ci/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/integration-tests.yml -------------------------------------------------------------------------------- /eng/ci/merge-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/merge-mirror.yml -------------------------------------------------------------------------------- /eng/ci/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/official-build.yml -------------------------------------------------------------------------------- /eng/ci/public-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/public-build.yml -------------------------------------------------------------------------------- /eng/ci/templates/install-dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/install-dotnet.yml -------------------------------------------------------------------------------- /eng/ci/templates/jobs/build-private-site-ext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/jobs/build-private-site-ext.yml -------------------------------------------------------------------------------- /eng/ci/templates/jobs/run-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/jobs/run-unit-tests.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/build-artifacts-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/build-artifacts-linux.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/build-artifacts-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/build-artifacts-windows.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/merge-jittrace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/merge-jittrace.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/process-coldstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/process-coldstart.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/run-benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/run-benchmarks.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/run-coldstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/run-coldstart.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/run-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/run-integration-tests.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/run-metrics-monitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/run-metrics-monitor.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/run-non-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/run-non-e2e-tests.yml -------------------------------------------------------------------------------- /eng/ci/templates/official/jobs/setup-benchmark-agents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/official/jobs/setup-benchmark-agents.yml -------------------------------------------------------------------------------- /eng/ci/templates/steps/build-site-ext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/steps/build-site-ext.yml -------------------------------------------------------------------------------- /eng/ci/templates/variables/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/variables/benchmarks.yml -------------------------------------------------------------------------------- /eng/ci/templates/variables/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/variables/build.yml -------------------------------------------------------------------------------- /eng/ci/templates/variables/coldstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/ci/templates/variables/coldstart.yml -------------------------------------------------------------------------------- /eng/perf/http.benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/perf/http.benchmarks.yml -------------------------------------------------------------------------------- /eng/res/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/res/functions.png -------------------------------------------------------------------------------- /eng/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/res/icon.png -------------------------------------------------------------------------------- /eng/res/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/res/key.snk -------------------------------------------------------------------------------- /eng/script/checkin-secrets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/script/checkin-secrets.ps1 -------------------------------------------------------------------------------- /eng/script/checkout-secrets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/eng/script/checkout-secrets.ps1 -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/global.json -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/omnisharp.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9/Hello.cs -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9/HelloHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9/HelloHttp.csproj -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9/Program.cs -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9/host.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9NoProxy/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9NoProxy/Hello.cs -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9NoProxy/HelloHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9NoProxy/HelloHttp.csproj -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9NoProxy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9NoProxy/Program.cs -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNet9NoProxy/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNet9NoProxy/host.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/host.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/package-lock.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/package.json -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/src/functions/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/src/functions/Hello.js -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/src/functions/HelloAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/src/functions/HelloAuth.js -------------------------------------------------------------------------------- /perf/Apps/HelloHttpNode/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/HelloHttpNode/src/index.js -------------------------------------------------------------------------------- /perf/Apps/TimerAppNet9/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/TimerAppNet9/App.csproj -------------------------------------------------------------------------------- /perf/Apps/TimerAppNet9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/TimerAppNet9/Program.cs -------------------------------------------------------------------------------- /perf/Apps/TimerAppNet9/TimerFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/TimerAppNet9/TimerFunctions.cs -------------------------------------------------------------------------------- /perf/Apps/TimerAppNet9/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/TimerAppNet9/host.json -------------------------------------------------------------------------------- /perf/Apps/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/Apps/global.json -------------------------------------------------------------------------------- /perf/WebJobs.Script.Benchmarks/AuthUtilityBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/WebJobs.Script.Benchmarks/AuthUtilityBenchmarks.cs -------------------------------------------------------------------------------- /perf/WebJobs.Script.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/WebJobs.Script.Benchmarks/Program.cs -------------------------------------------------------------------------------- /perf/WebJobs.Script.Benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/WebJobs.Script.Benchmarks/README.md -------------------------------------------------------------------------------- /perf/WebJobs.Script.Benchmarks/RecommendedConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/WebJobs.Script.Benchmarks/RecommendedConfig.cs -------------------------------------------------------------------------------- /perf/WebJobs.Script.Benchmarks/SanitizerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/perf/WebJobs.Script.Benchmarks/SanitizerBenchmarks.cs -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/release_notes.md -------------------------------------------------------------------------------- /sample/CSharp/ApiHubFileTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/ApiHubFileTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/ApiHubFileTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/ApiHubFileTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/BlobTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/BlobTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/BlobTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/BlobTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/CosmosDBTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/CosmosDBTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/CosmosDBTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/CosmosDBTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/DocumentDB/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/DocumentDB/function.json -------------------------------------------------------------------------------- /sample/CSharp/DocumentDB/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/DocumentDB/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-AdminLevel/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-AdminLevel/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-AdminLevel/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-AdminLevel/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-AnonymousLevel/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-AnonymousLevel/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-AnonymousLevel/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-AnonymousLevel/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Cancellation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Cancellation/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Cancellation/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Cancellation/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Compat/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Compat/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Compat/function.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Compat/function.proj -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Compat/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Compat/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-CustomRoute/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-CustomRoute/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-CustomRoute/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-CustomRoute/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Identities/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Identities/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Identities/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Identities/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Poco/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Poco/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger-Poco/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger-Poco/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/HttpTriggerWithObject/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTriggerWithObject/function.json -------------------------------------------------------------------------------- /sample/CSharp/HttpTriggerWithObject/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/HttpTriggerWithObject/run.csx -------------------------------------------------------------------------------- /sample/CSharp/ManualTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/ManualTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/ManualTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/ManualTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/MobileTable/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/MobileTable/function.json -------------------------------------------------------------------------------- /sample/CSharp/MobileTable/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/MobileTable/run.csx -------------------------------------------------------------------------------- /sample/CSharp/NotificationHub/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/NotificationHub/function.json -------------------------------------------------------------------------------- /sample/CSharp/NotificationHub/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/NotificationHub/run.csx -------------------------------------------------------------------------------- /sample/CSharp/QueueTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/QueueTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/QueueTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/QueueTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/SendGrid/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/SendGrid/function.json -------------------------------------------------------------------------------- /sample/CSharp/SendGrid/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/SendGrid/run.csx -------------------------------------------------------------------------------- /sample/CSharp/Shared/Message.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/Shared/Message.csx -------------------------------------------------------------------------------- /sample/CSharp/Shared/Order.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/Shared/Order.csx -------------------------------------------------------------------------------- /sample/CSharp/TimerTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/TimerTrigger/function.json -------------------------------------------------------------------------------- /sample/CSharp/TimerTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/TimerTrigger/run.csx -------------------------------------------------------------------------------- /sample/CSharp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharp/host.json -------------------------------------------------------------------------------- /sample/CSharpBenchmark/HttpTriggerAnon/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharpBenchmark/HttpTriggerAnon/function.json -------------------------------------------------------------------------------- /sample/CSharpBenchmark/HttpTriggerAnon/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharpBenchmark/HttpTriggerAnon/run.csx -------------------------------------------------------------------------------- /sample/CSharpBenchmark/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CSharpBenchmark/host.json -------------------------------------------------------------------------------- /sample/CustomHandler/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandler/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/CustomHandler/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandler/host.json -------------------------------------------------------------------------------- /sample/CustomHandler/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandler/proxies.json -------------------------------------------------------------------------------- /sample/CustomHandler/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandler/server.js -------------------------------------------------------------------------------- /sample/CustomHandlerRetry/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandlerRetry/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/CustomHandlerRetry/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandlerRetry/host.json -------------------------------------------------------------------------------- /sample/CustomHandlerRetry/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandlerRetry/package-lock.json -------------------------------------------------------------------------------- /sample/CustomHandlerRetry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandlerRetry/package.json -------------------------------------------------------------------------------- /sample/CustomHandlerRetry/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/CustomHandlerRetry/server.js -------------------------------------------------------------------------------- /sample/HttpWorker/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/HttpWorker/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/HttpWorker/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/HttpWorker/host.json -------------------------------------------------------------------------------- /sample/HttpWorker/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/HttpWorker/proxies.json -------------------------------------------------------------------------------- /sample/HttpWorker/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/HttpWorker/server.js -------------------------------------------------------------------------------- /sample/Java/HttpTrigger/Function.java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Java/HttpTrigger/Function.java.txt -------------------------------------------------------------------------------- /sample/Java/HttpTrigger/HttpTrigger-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Java/HttpTrigger/HttpTrigger-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /sample/Java/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Java/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/Java/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Java/host.json -------------------------------------------------------------------------------- /sample/Node/ApiHubFileTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ApiHubFileTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/ApiHubFileTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ApiHubFileTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/BlobTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/BlobTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/BlobTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/BlobTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/DocumentDB/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/DocumentDB/function.json -------------------------------------------------------------------------------- /sample/Node/DocumentDB/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/DocumentDB/index.js -------------------------------------------------------------------------------- /sample/Node/EventHubTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/EventHubTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/EventHubTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/EventHubTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-CustomRoute-Get/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-CustomRoute-Get/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-CustomRoute-Get/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-CustomRoute-Get/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-CustomRoute-Post/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-CustomRoute-Post/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-CustomRoute-Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-CustomRoute-Post/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Disabled/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Disabled/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Disabled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Disabled/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Promise/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Promise/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Promise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Promise/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Timeout/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Timeout/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger-Timeout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger-Timeout/index.js -------------------------------------------------------------------------------- /sample/Node/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/HttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/HttpTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/ManualTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ManualTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/ManualTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ManualTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/MobileTable/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/MobileTable/function.json -------------------------------------------------------------------------------- /sample/Node/MobileTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/MobileTable/index.js -------------------------------------------------------------------------------- /sample/Node/NotificationHub/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/NotificationHub/function.json -------------------------------------------------------------------------------- /sample/Node/NotificationHub/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/NotificationHub/index.js -------------------------------------------------------------------------------- /sample/Node/QueueTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/QueueTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/QueueTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/QueueTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/SendGrid/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/SendGrid/function.json -------------------------------------------------------------------------------- /sample/Node/SendGrid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/SendGrid/index.js -------------------------------------------------------------------------------- /sample/Node/ServiceBusQueueTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ServiceBusQueueTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/ServiceBusQueueTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ServiceBusQueueTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/ServiceBusTopicTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ServiceBusTopicTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/ServiceBusTopicTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/ServiceBusTopicTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/Shared/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/Shared/test.js -------------------------------------------------------------------------------- /sample/Node/TimerTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/TimerTrigger/function.json -------------------------------------------------------------------------------- /sample/Node/TimerTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/TimerTrigger/index.js -------------------------------------------------------------------------------- /sample/Node/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/host.json -------------------------------------------------------------------------------- /sample/Node/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Node/proxies.json -------------------------------------------------------------------------------- /sample/NodeDrain/HttpTrigger-LongRun/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeDrain/HttpTrigger-LongRun/function.json -------------------------------------------------------------------------------- /sample/NodeDrain/HttpTrigger-LongRun/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeDrain/HttpTrigger-LongRun/index.js -------------------------------------------------------------------------------- /sample/NodeDrain/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeDrain/host.json -------------------------------------------------------------------------------- /sample/NodeResume/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeResume/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/NodeResume/HttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeResume/HttpTrigger/index.js -------------------------------------------------------------------------------- /sample/NodeResume/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeResume/host.json -------------------------------------------------------------------------------- /sample/NodeRetry/HttpTrigger-RetryFunctionJson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeRetry/HttpTrigger-RetryFunctionJson/index.js -------------------------------------------------------------------------------- /sample/NodeRetry/HttpTrigger-RetryHostJson/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeRetry/HttpTrigger-RetryHostJson/function.json -------------------------------------------------------------------------------- /sample/NodeRetry/HttpTrigger-RetryHostJson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeRetry/HttpTrigger-RetryHostJson/index.js -------------------------------------------------------------------------------- /sample/NodeRetry/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeRetry/host.json -------------------------------------------------------------------------------- /sample/NodeWithoutBundle/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeWithoutBundle/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/NodeWithoutBundle/HttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeWithoutBundle/HttpTrigger/index.js -------------------------------------------------------------------------------- /sample/NodeWithoutBundle/Shared/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeWithoutBundle/Shared/test.js -------------------------------------------------------------------------------- /sample/NodeWithoutBundle/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/NodeWithoutBundle/host.json -------------------------------------------------------------------------------- /sample/PowerShell/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/PowerShell/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/PowerShell/HttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/PowerShell/HttpTrigger/run.ps1 -------------------------------------------------------------------------------- /sample/PowerShell/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/PowerShell/host.json -------------------------------------------------------------------------------- /sample/Python/HttpTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Python/HttpTrigger/__init__.py -------------------------------------------------------------------------------- /sample/Python/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Python/HttpTrigger/function.json -------------------------------------------------------------------------------- /sample/Python/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Python/host.json -------------------------------------------------------------------------------- /sample/PythonWorkerIndexing/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/PythonWorkerIndexing/function_app.py -------------------------------------------------------------------------------- /sample/PythonWorkerIndexing/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/PythonWorkerIndexing/host.json -------------------------------------------------------------------------------- /sample/Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/sample/Samples.csproj -------------------------------------------------------------------------------- /schemas/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/schemas/json/README.md -------------------------------------------------------------------------------- /schemas/json/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/schemas/json/extensions.json -------------------------------------------------------------------------------- /schemas/json/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/schemas/json/function.json -------------------------------------------------------------------------------- /src.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src.ruleset -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/Directory.Version.props -------------------------------------------------------------------------------- /src/WebJobs.Script.Abstractions/Directory.Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Abstractions/Directory.Version.props -------------------------------------------------------------------------------- /src/WebJobs.Script.Abstractions/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Abstractions/key.snk -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/.gitignore -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Channel/GrpcCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Channel/GrpcCapabilities.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.Log.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Eventing/GrpcEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Eventing/GrpcEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Eventing/GrpcEventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Eventing/GrpcEventExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Eventing/InboundGrpcEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Eventing/InboundGrpcEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Eventing/OutboundGrpcEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Eventing/OutboundGrpcEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/CustomHandlerHttpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/CustomHandlerHttpOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/DefaultHttpWorkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/DefaultHttpWorkerService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpOutputBindingResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpOutputBindingResponse.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpScriptInvocationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpScriptInvocationResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerChannel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerChannelFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerDescription.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerFunctionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerFunctionProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerProcess.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerProcessFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/HttpWorkerRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/HttpWorkerRoute.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/IHttpWorkerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/IHttpWorkerChannel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/IHttpWorkerChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/IHttpWorkerChannelFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/IHttpWorkerProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/IHttpWorkerProcessFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Http/IHttpWorkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Http/IHttpWorkerService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/IFunctionInvocationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/IFunctionInvocationDispatcher.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/IWorkerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/IWorkerChannel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/ProcessManagement/WorkerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/ProcessManagement/WorkerContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/ProcessManagement/WorkerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/ProcessManagement/WorkerProcess.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/IRpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/IRpcServer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannelDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannelDictionary.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/IRpcWorkerChannelFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/IRpcWorkerProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/IRpcWorkerProcessFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/RpcInitializationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/RpcInitializationService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/RpcWorkerChannelState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/RpcWorkerChannelState.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/RpcWorkerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/RpcWorkerContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/RpcWorkerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/RpcWorkerProcess.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Rpc/RpcWorkerProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Rpc/RpcWorkerProcessFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/RpcFunctionDescriptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/RpcFunctionDescriptorProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/RpcScriptHostLifecycleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/RpcScriptHostLifecycleService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/RpcScriptHostWorkerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/RpcScriptHostWorkerManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/RpcWebHostWorkerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/RpcWebHostWorkerManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Server/AspNetCoreGrpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Server/AspNetCoreGrpcServer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Server/FunctionRpcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Server/FunctionRpcService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/Server/Startup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WebJobs.Script.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WebJobs.Script.Grpc.csproj -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WorkerChannelThrottleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WorkerChannelThrottleProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WorkerConcurrencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WorkerConcurrencyManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WorkerFunctionInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WorkerFunctionInvoker.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WorkerFunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WorkerFunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.Grpc/WorkerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.Grpc/WorkerUtilities.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/New-ReleaseJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/New-ReleaseJson.ps1 -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/Publish.MultiTFM.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/Publish.MultiTFM.targets -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/Publish.SingleTFM.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/Publish.SingleTFM.targets -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/Tasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/Tasks.targets -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/applicationHost.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/applicationHost.xdt -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/extension.xml -------------------------------------------------------------------------------- /src/WebJobs.Script.SiteExtension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.SiteExtension/readme.md -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Controllers/HostController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Controllers/HostController.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Controllers/KeysController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Controllers/KeysController.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/DefaultScriptHostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/DefaultScriptHostBuilder.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/CompositeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/CompositeLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/DeferredLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/DeferredLogEntry.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/DeferredLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/DeferredLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/DiagnosticEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/DiagnosticEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/IEventGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/IEventGenerator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Diagnostics/SystemLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Diagnostics/SystemLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/FileMonitoringService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/FileMonitoringService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/FunctionsSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/FunctionsSyncService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Helpers/MediaTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Helpers/MediaTypeMap.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Helpers/TableStorageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Helpers/TableStorageHelpers.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Helpers/VfsSpecialFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Helpers/VfsSpecialFolders.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Home.html -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/HttpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/HttpException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/HttpRequestQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/HttpRequestQueue.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/IFileMonitoringService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/IFileMonitoringService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/IScriptHostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/IScriptHostBuilder.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Management/IInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Management/IInstanceManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Management/MeshServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Management/MeshServiceClient.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Management/TriggersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Management/TriggersResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Management/VirtualFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Management/VirtualFileSystem.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Metrics/HostMetricsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Metrics/HostMetricsProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Metrics/IHostMetricsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Metrics/IHostMetricsProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Metrics/IMetricsPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Metrics/IMetricsPublisher.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ApiModel.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ApiModelUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ApiModelUtility.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/AzureStorageInfoValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/AzureStorageInfoValue.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/AzureStorageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/AzureStorageType.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/CodePackageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/CodePackageType.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ContainerHealthEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ContainerHealthEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/CorsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/CorsSettings.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/DrainModeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/DrainModeState.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/DrainModeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/DrainModeStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/EasyAuthSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/EasyAuthSettings.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ErrorResponse.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ExtensionBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ExtensionBundle.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ExtensionsRestoreJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ExtensionsRestoreJob.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FileCallbackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FileCallbackResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FunctionAppSecrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FunctionAppSecrets.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FunctionInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FunctionInvocation.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FunctionMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FunctionMetrics.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FunctionProcesses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FunctionProcesses.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/FunctionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/FunctionStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/HostAssignmentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/HostAssignmentContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/HostAssignmentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/HostAssignmentRequest.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/HostLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/HostLogEntry.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/HostRestartResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/HostRestartResponse.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/HostStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/HostStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/Link.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/MSIContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/MSIContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/ResumeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/ResumeStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/RunFromPackageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/RunFromPackageContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Models/VfsStatEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Models/VfsStatEntry.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/NullMetricsPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/NullMetricsPublisher.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/OperationResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/PreJIT/.jitmarker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/PreJIT/.jitmarker -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/PreJIT/JitTraceRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/PreJIT/JitTraceRuntime.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/PreJIT/coldstart.jittrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/PreJIT/coldstart.jittrace -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/PreJIT/linux.coldstart.jittrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/PreJIT/linux.coldstart.jittrace -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Program.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Properties/Resources.resx -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Proxy/ProxyFunctionExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Proxy/ProxyFunctionExecutor.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Resources/Functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Resources/Functions/host.json -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Resources/app_offline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Resources/app_offline.htm -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Routing/ScriptRouteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Routing/ScriptRouteHandler.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Scale/TableEntityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Scale/TableEntityConverter.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/ScriptHostStartupOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/ScriptHostStartupOperation.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Security/EncryptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Security/EncryptionHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Security/JwtTokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Security/JwtTokenHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Security/KeyManagement/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Security/KeyManagement/Key.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Security/SecretGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Security/SecretGenerator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Security/SecretsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Security/SecretsUtility.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Standby/IStandbyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Standby/IStandbyManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Standby/StandbyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Standby/StandbyManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Standby/StandbyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Standby/StandbyOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Standby/StandbyOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Standby/StandbyOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Standby/WarmUpConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Standby/WarmUpConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/Startup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/StartupContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/StartupContextProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/WebJobsScriptHostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/WebJobsScriptHostService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/appsettings.json -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/extension.xml -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/runtimeconfig.template.json -------------------------------------------------------------------------------- /src/WebJobs.Script.WebHost/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script.WebHost/web.config -------------------------------------------------------------------------------- /src/WebJobs.Script/ActiveHostChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ActiveHostChangedEventArgs.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/BindingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/BindingContext.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/Extensibility/ScriptBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/Extensibility/ScriptBinding.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/ExtensionBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/ExtensionBinding.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/FunctionBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/FunctionBinding.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/GeneralScriptBindingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/GeneralScriptBindingProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/Http/HttpBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/Http/HttpBinding.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/Http/RawScriptResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/Http/RawScriptResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/Http/ScriptObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/Http/ScriptObjectResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/NullListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/NullListener.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/SimpleValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/SimpleValueProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/StreamValueBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/StreamValueBinder.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Binding/ValueBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Binding/ValueBinder.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/BindingExtensions/ExtensionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/BindingExtensions/ExtensionsManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/BindingExtensions/IExtensionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/BindingExtensions/IExtensionsManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/CloudConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/CloudConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/CloudName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/CloudName.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ActiveHostConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ActiveHostConfigurationSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ActiveHostWebJobsOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ActiveHostWebJobsOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/AppServiceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/AppServiceOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/AppServiceOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/AppServiceOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ConfigurationSectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ConfigurationSectionNames.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ConsoleLoggingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ConsoleLoggingOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ConsoleLoggingOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ConsoleLoggingOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ExtensionBundleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ExtensionBundleOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ExtensionRequirementOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ExtensionRequirementOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/FeatureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/FeatureFlags.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/FunctionMetadataOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/FunctionMetadataOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/FunctionsHostingConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/FunctionsHostingConfigOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/FunctionsHostingConfigSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/FunctionsHostingConfigSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/HostConfigurationProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/HostConfigurationProfile.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/HostHealthMonitorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/HostHealthMonitorOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/HostHealthMonitorOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/HostHealthMonitorOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/IConfigureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/IConfigureBuilder.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScaleOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScaleOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptApplicationHostOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptApplicationHostOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptHostRecycleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptHostRecycleOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptHostRecycleOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptHostRecycleOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptJobHostOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptJobHostOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptJobHostOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptJobHostOptionsSetup.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptSettingsManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptTelemetryInitializer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptTelemetryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptTelemetryProcessor.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/ScriptTypeLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/ScriptTypeLocator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/TransmissionStatusHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/TransmissionStatusHandler.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Config/WorkerConcurrencyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Config/WorkerConcurrencyOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/CustomAttributeBuilderUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/CustomAttributeBuilderUtility.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/CacheMetadataResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/CacheMetadataResolver.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/Compilation/ICompilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/Compilation/ICompilation.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/DependencyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/DependencyHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/DotNetConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/DotNetConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/DotNetMuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/DotNetMuxer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/DotNetScriptTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/DotNetScriptTypes.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/FunctionParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/FunctionParameter.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/FunctionSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/FunctionSignature.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/IMethodReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/IMethodReference.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/MethodReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/MethodReference.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/PackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/PackageManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/PackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/PackageReference.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/RuntimeAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/RuntimeAsset.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/RuntimeGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/RuntimeGraph.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/DotNet/RuntimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/DotNet/RuntimeInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/FunctionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/FunctionDescriptor.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/FunctionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/FunctionGenerator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/FunctionGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/FunctionGroups.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/FunctionInvokerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/FunctionInvokerBase.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/FunctionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/FunctionLoader.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/IFunctionInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/IFunctionInvoker.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/LogTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/LogTargets.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/PackageRestoreResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/PackageRestoreResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Description/ParameterDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Description/ParameterDescriptor.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/DefaultFileWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/DefaultFileWriterFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/DiagnosticEventConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/DiagnosticEventConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/FileLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/FileLoggingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/FileLoggingMode.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/FileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/FileWriter.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/ForwardingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/ForwardingLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/ForwardingLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/ForwardingLoggerFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/FunctionStartedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/FunctionStartedEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/HostFileLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/HostFileLoggerProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/HostStartedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/HostStartedEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/IFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/IFileWriter.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/IFileWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/IFileWriterFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/IHostDiagnosticEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/IHostDiagnosticEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/IMetricsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/IMetricsLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/ISystemLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/ISystemLoggerFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/LogType.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/MetricEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/MetricEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/MetricEventNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/MetricEventNames.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/MetricsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/MetricsLogger.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/StructuredLogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/StructuredLogWriter.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/SystemLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/SystemLoggerFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Diagnostics/ValueStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Diagnostics/ValueStopwatch.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Environment/EnvironmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Environment/EnvironmentExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Environment/EnvironmentSettingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Environment/EnvironmentSettingNames.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Environment/IEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Environment/IEnvironment.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Environment/SystemEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Environment/SystemEnvironment.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ErrorCodes.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/DebugNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/DebugNotification.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/DiagnosticNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/DiagnosticNotification.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/EventSources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/EventSources.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/File/FileEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/File/FileEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/File/FileWatcherEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/File/FileWatcherEventSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/Host/FunctionIndexingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/Host/FunctionIndexingEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/Host/HostRestartEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/Host/HostRestartEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/Host/HostStartEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/Host/HostStartEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/IScriptEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/IScriptEventManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/ScriptEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/ScriptEvent.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Eventing/ScriptEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Eventing/ScriptEventManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Exceptions/HttpForwardingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Exceptions/HttpForwardingException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/ActionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/ActionExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/BindingMetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/BindingMetadataExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/CancellationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/CancellationExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/DiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/DiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/FileUtility.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/FuncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/FuncExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/IDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/IDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/IMetricsLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/IMetricsLoggerExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/JObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/JObjectExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/ProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/ProjectExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Extensions/TokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Extensions/TokenExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/ExternalStartupException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ExternalStartupException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/FileProvisioning/PowerShell/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/FileProvisioning/PowerShell/profile.ps1 -------------------------------------------------------------------------------- /src/WebJobs.Script/FunctionConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/FunctionConfigurationException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/DebugManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/DebugManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/DebugStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/DebugStateProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ExtensionBundleManagerValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ExtensionBundleManagerValidator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/FileLoggingStatusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/FileLoggingStatusManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/FunctionAppValidationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/FunctionAppValidationService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/FunctionMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/FunctionMetadataManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/FunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/FunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/FunctionMetadataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/FunctionMetadataResult.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/HostFunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/HostFunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/HostIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/HostIdValidator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IDebugManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IDebugManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IDebugStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IDebugStateProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IFileLoggingStatusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IFileLoggingStatusManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IFunctionAppValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IFunctionAppValidator.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IFunctionMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IFunctionMetadataManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IFunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IFunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IHostFunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IHostFunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IScriptHostFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IScriptHostFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IScriptHostLifecycleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IScriptHostLifecycleService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IScriptHostManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IScriptHostManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IScriptJobHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IScriptJobHost.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/IWorkerFunctionMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/IWorkerFunctionMetadataProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/Kubernetes/KubernetesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/Kubernetes/KubernetesClient.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/Kubernetes/KubernetesLockHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/Kubernetes/KubernetesLockHandle.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/MetadataJsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/MetadataJsonHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ProxyFunctionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ProxyFunctionMetadata.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ProxyFunctionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ProxyFunctionProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ScriptHost.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ScriptHostIdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ScriptHostIdProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ScriptHostState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ScriptHostState.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ScriptInvocationArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ScriptInvocationArguments.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Host/ScriptJobHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Host/ScriptJobHostExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostConfigurationException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostDisposedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostDisposedException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostInitializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostInitializationException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostNameProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostOptionsProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/HostedServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/HostedServiceManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Http/DefaultHttpProxyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Http/DefaultHttpProxyService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Http/DefaultHttpRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Http/DefaultHttpRouteManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Http/IHttpProxyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Http/IHttpProxyService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Http/IHttpRoutesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Http/IHttpRoutesManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Http/RetryProxyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Http/RetryProxyHandler.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/IHostOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/IHostOptionsProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/IManagedHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/IManagedHostedService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/IO/AutoRecoveringFileSystemWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/IO/AutoRecoveringFileSystemWatcher.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/InvalidHostServicesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/InvalidHostServicesException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/JsonSerializerOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/JsonSerializerOptionsProvider.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Metrics/HostMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Metrics/HostMetrics.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Metrics/IHostMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Metrics/IHostMetrics.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Models/ExtensionBundleDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Models/ExtensionBundleDetails.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Models/ExtensionPackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Models/ExtensionPackageReference.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Models/ExtensionReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Models/ExtensionReference.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Models/ExtensionReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Models/ExtensionReferences.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/NullHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/NullHostedService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/PlatformHelper.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Pools/ObjectPoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Pools/ObjectPoolExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Pools/PoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Pools/PoolFactory.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Pools/PoolRental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Pools/PoolRental.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Properties/Resources.resx -------------------------------------------------------------------------------- /src/WebJobs.Script/RpcWorkerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/RpcWorkerConfig.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Sanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Sanitizer.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Scale/ApplicationPerformanceCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Scale/ApplicationPerformanceCounters.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Scale/HostPerformanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Scale/HostPerformanceManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/ScriptConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ScriptConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/ScriptHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ScriptHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/ScriptServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/ScriptServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/SlidingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/SlidingWindow.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Utility.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/WebJobs.Script.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/WebJobs.Script.csproj -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/ConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/ConsoleLog.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/IScriptHostWorkerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/IScriptHostWorkerManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/IWebHostWorkerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/IWebHostWorkerManager.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/IWorkerConsoleLogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/IWorkerConsoleLogSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/Rpc/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/Rpc/RpcException.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/Rpc/RpcWorkerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/Rpc/RpcWorkerConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/Rpc/RpcWorkerDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/Rpc/RpcWorkerDescription.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerConsoleLogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerConsoleLogService.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerConsoleLogSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerConsoleLogSource.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerConstants.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerDescription.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerManagerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerManagerState.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerProcessArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerProcessArguments.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerProcessCountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerProcessCountOptions.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerProcessInfo.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/Workers/WorkerStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/Workers/WorkerStatus.cs -------------------------------------------------------------------------------- /src/WebJobs.Script/extensionrequirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/extensionrequirements.json -------------------------------------------------------------------------------- /src/WebJobs.Script/runtimeassemblies-relaxed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/runtimeassemblies-relaxed.json -------------------------------------------------------------------------------- /src/WebJobs.Script/runtimeassemblies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/runtimeassemblies.json -------------------------------------------------------------------------------- /src/WebJobs.Script/runtimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/src/WebJobs.Script/runtimes.json -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Directory.Packages.props -------------------------------------------------------------------------------- /test/Resources/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/Directory.Packages.props -------------------------------------------------------------------------------- /test/Resources/TestProjects/Dependency55/TypeGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/Dependency55/TypeGetter.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/Dependency56/TypeGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/Dependency56/TypeGetter.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/DotNetCustomHandler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/DotNetCustomHandler/Program.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/DotNetCustomHandler/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/DotNetCustomHandler/host.json -------------------------------------------------------------------------------- /test/Resources/TestProjects/DotNetIsolated60/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/DotNetIsolated60/Program.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/DotNetIsolated60/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/DotNetIsolated60/host.json -------------------------------------------------------------------------------- /test/Resources/TestProjects/EmptyScriptRoot/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/EmptyScriptRoot/host.json -------------------------------------------------------------------------------- /test/Resources/TestProjects/TestFunctions/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/TestFunctions/Functions.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/WebJobsStartupTests/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestProjects/WebJobsStartupTests/Startup.cs -------------------------------------------------------------------------------- /test/Resources/TestProjects/WebJobsStartupTests/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/CosmosDBIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/CosmosDBIn/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/CosmosDBIn/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/CosmosDBIn/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/CosmosDBOut/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/CosmosDBOut/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/CosmosDBTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/CosmosDBTrigger/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/CustomTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/CustomTrigger/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/ManualTrigger/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/ManualTrigger/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/MissingAssemblies/project.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/MobileTableIn/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/MobileTableIn/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/MobileTableOut/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/MobileTableOut/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/MultipleOutputs/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/MultipleOutputs/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/MultipleTriggers/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/MultipleTriggers/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/OneSecondTimer/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/OneSecondTimer/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/Scenarios/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/Scenarios/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/Scenarios/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/Scenarios/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/TimeoutStopHost/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/TimeoutStopHost/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/TimeoutSync/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/TimeoutSync/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/TimeoutToken/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/TimeoutToken/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/TwilioReference/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/TwilioReference/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/CSharp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/CSharp/host.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/DirectLoad/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/DotNet/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/FunctionGeneration/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/Invalid/host.json: -------------------------------------------------------------------------------- 1 | { 2 | ~ 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/ListenerExceptions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/NoFunction/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/BlobTriggerToBlob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/BlobTriggerToBlob/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/Common/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/Common/test.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/CosmosDBIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/CosmosDBIn/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/CosmosDBIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/CosmosDBIn/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/CosmosDBOut/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/CosmosDBOut/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/CosmosDBOut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/CosmosDBOut/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/EventHubSender/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/EventHubSender/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/HttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/HttpTrigger/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/Invalid/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/Invalid/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/Invalid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/Invalid/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/ManualTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/ManualTrigger/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/MobileTableIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/MobileTableIn/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/MobileTableOut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/MobileTableOut/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/MultipleInputs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/MultipleInputs/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/Scenarios/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/Scenarios/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/Scenarios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/Scenarios/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TableIn/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TableIn/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TableIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TableIn/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TableOut/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TableOut/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TableOut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TableOut/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TimeoutSync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TimeoutSync/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/TimerTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/TimerTrigger/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/WebHookTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/WebHookTrigger/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/functions.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/functions.tests.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/index.js -------------------------------------------------------------------------------- /test/Resources/TestScripts/Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Node/package.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/NodeWithBundles/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/NodeWithBundles/host.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/OutOfDateExtension/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/OutOfRange/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/OutOfRange/host.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/Ping/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Proxies/Ping/function.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/Ping/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Proxies/Ping/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/PingAuth/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Proxies/PingAuth/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/PingRoute/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Proxies/PingRoute/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/Proxies/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/Proxies/proxies.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/ProxiesOnly/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/Resources/TestScripts/ProxiesOnly/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/ProxiesOnly/proxies.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/WarmupFunction/Ping/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/WarmupFunction/Ping/run.csx -------------------------------------------------------------------------------- /test/Resources/TestScripts/WarmupFunction/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/WarmupFunction/host.json -------------------------------------------------------------------------------- /test/Resources/TestScripts/WarmupFunction/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/Resources/TestScripts/WarmupFunction/proxies.json -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Integration/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Integration/xunit.runner.json -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/FunctionTraceEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/FunctionTraceEvent.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/HttpTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/HttpTestHelpers.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TaskExtensions.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TempDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TempDirectory.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestEnvironment.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestEventGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestEventGenerator.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestHandler.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestHelpers.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestHostExtensions.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestInvoker.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestLogger.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestLoggerProvider.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestMetricsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestMetricsLogger.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestMetricsTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestMetricsTracker.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestNameResolver.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestOptionsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestOptionsFactory.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestOptionsMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestOptionsMonitor.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestScaleMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestScaleMonitor.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestScopedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestScopedSettings.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestSecretManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestSecretManager.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestTraits.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TestTypeLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TestTypeLocator.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests.Shared/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests.Shared/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Binding/HttpBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Binding/HttpBindingTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/DependencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/DependencyTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Description/DotNet/TestFiles/PackageReferences/FunctionWithNoProject/function.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Eventing/SystemLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Eventing/SystemLoggerTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/ExtensionManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/ExtensionManagerTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/FeatureFlagsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/FeatureFlagsTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/FileMonitoringServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/FileMonitoringServiceTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/FunctionsSyncServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/FunctionsSyncServiceTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Helpers/SecretsUtilityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Helpers/SecretsUtilityTest.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/HostNameProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/HostNameProviderTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/HostsOptionsProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/HostsOptionsProviderTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/IO/FileUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/IO/FileUtilityTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/MetadataJsonHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/MetadataJsonHelperTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Metrics/HostMetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Metrics/HostMetricsTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/MockNullLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/MockNullLoggerFactory.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Pools/PoolFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Pools/PoolFactoryTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Pools/PoolRentalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Pools/PoolRentalTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Properties/Resources.resx -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/ProxyFunctionProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/ProxyFunctionProviderTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/RuntimeAssembliesInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/RuntimeAssembliesInfoTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/SanitizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/SanitizerTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/ScriptHostIdProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/ScriptHostIdProviderTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/ScriptHostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/ScriptHostTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/ScriptSettingsManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/ScriptSettingsManagerTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Security/AuthUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Security/AuthUtilityTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/SlidingWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/SlidingWindowTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/StandbyManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/StandbyManagerTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/StaticAnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/StaticAnalysisTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/TestFixture/ExtensionRequirementOptionsTests/EmptyFile.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/TestUtils.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/TestWorkers/worker1/1.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/TestWorkers/worker2/2.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/UtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/UtilityTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Utils/TokenExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Utils/TokenExtensionTests.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Workers/Rpc/TestRpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Workers/Rpc/TestRpcServer.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/Workers/TestWorkerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/Workers/TestWorkerProcess.cs -------------------------------------------------------------------------------- /test/WebJobs.Script.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/test/WebJobs.Script.Tests/xunit.runner.json -------------------------------------------------------------------------------- /tools/Clean.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/tools/Clean.targets -------------------------------------------------------------------------------- /tools/ExtensionsMetadataGenerator/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/tools/ExtensionsMetadataGenerator/Directory.Build.props -------------------------------------------------------------------------------- /tools/ExtensionsMetadataGenerator/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/tools/ExtensionsMetadataGenerator/key.snk -------------------------------------------------------------------------------- /tools/ExtensionsMetadataGenerator/src/ExtensionsMetadataGenerator.Console/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "rollForward": "Major" 3 | } -------------------------------------------------------------------------------- /tools/ExtensionsMetadataGenerator/src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-functions-host/HEAD/tools/ExtensionsMetadataGenerator/src/stylecop.json --------------------------------------------------------------------------------