├── .azure-pipelines ├── 1esmain.yml ├── SignExtension.signproj ├── common │ ├── build.yml │ ├── lint.yml │ ├── package.yml │ ├── sbom.yml │ └── test.yml ├── compliance │ ├── CredScanSuppressions.json │ ├── PoliCheckExclusions.xml │ ├── compliance.yml │ └── tsaoptions.json ├── linux │ └── xvfb.init ├── main.yml └── release.yml ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── copilot-instructions.md └── workflows │ ├── bump-version-pr.yaml │ ├── feature-request.yml │ ├── info-needed-closer.yml │ ├── locker.yml │ └── main.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── NOTICE.html ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── extension.bundle.ts ├── gulpfile.ts ├── main.js ├── package.json ├── package.nls.json ├── resources ├── ManagedIdentityUserAssignedIdentities.svg ├── azFuncFunction.svg ├── azFuncProductionSlot.svg ├── azFuncProxy.svg ├── azFuncSlot.svg ├── azFuncSlots.svg ├── azure-functions.png ├── azure-functions.svg ├── backupTemplates │ ├── Microsoft.Azure.Functions.ExtensionBundle │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ ├── ballerina │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ └── Resources.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ ├── dotnet │ │ ├── ~1 │ │ │ ├── net48 │ │ │ │ ├── item.nupkg │ │ │ │ └── project.nupkg │ │ │ └── version.txt │ │ ├── ~2 │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── item.nupkg │ │ │ │ └── project.nupkg │ │ │ └── version.txt │ │ ├── ~3 │ │ │ ├── net5.0-isolated │ │ │ │ ├── item.nupkg │ │ │ │ └── project.nupkg │ │ │ ├── netcoreapp3.1 │ │ │ │ ├── item.nupkg │ │ │ │ └── project.nupkg │ │ │ └── version.txt │ │ └── ~4 │ │ │ ├── net5.0-isolated │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ ├── net6.0-isolated │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ ├── net6.0 │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ ├── net7.0-isolated │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ ├── net8.0-isolated │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ ├── net9.0-isolated │ │ │ ├── item.nupkg │ │ │ └── project.nupkg │ │ │ └── version.txt │ ├── java │ │ ├── ~2 │ │ │ ├── bindings │ │ │ │ └── bindings.json │ │ │ ├── resources │ │ │ │ └── Resources.json │ │ │ ├── templates │ │ │ │ └── templates.json │ │ │ └── version.txt │ │ ├── ~3 │ │ │ ├── bindings │ │ │ │ └── bindings.json │ │ │ ├── resources │ │ │ │ └── Resources.json │ │ │ ├── templates │ │ │ │ └── templates.json │ │ │ └── version.txt │ │ └── ~4 │ │ │ ├── bindings │ │ │ └── bindings.json │ │ │ ├── resources │ │ │ └── Resources.json │ │ │ ├── templates │ │ │ └── templates.json │ │ │ └── version.txt │ ├── nodejs-4.x │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ ├── pystein │ │ ├── bindings-v2 │ │ │ └── userPrompts.json │ │ ├── resources-v2 │ │ │ ├── Resources.Id-id.json │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.en-US.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates-v2 │ │ │ └── templates.json │ │ └── version.txt │ └── script │ │ ├── ~1 │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ │ ├── ~2 │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ │ ├── ~3 │ │ ├── bindings │ │ │ └── bindings.json │ │ ├── resources │ │ │ ├── Resources.cs-CZ.json │ │ │ ├── Resources.de-DE.json │ │ │ ├── Resources.es-ES.json │ │ │ ├── Resources.fr-FR.json │ │ │ ├── Resources.hu-HU.json │ │ │ ├── Resources.it-IT.json │ │ │ ├── Resources.ja-JP.json │ │ │ ├── Resources.json │ │ │ ├── Resources.ko-KR.json │ │ │ ├── Resources.nl-NL.json │ │ │ ├── Resources.pl-PL.json │ │ │ ├── Resources.pt-BR.json │ │ │ ├── Resources.pt-PT.json │ │ │ ├── Resources.ru-RU.json │ │ │ ├── Resources.sv-SE.json │ │ │ ├── Resources.tr-TR.json │ │ │ ├── Resources.zh-CN.json │ │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ │ └── templates.json │ │ └── version.txt │ │ └── ~4 │ │ ├── bindings │ │ └── bindings.json │ │ ├── resources │ │ ├── Resources.cs-CZ.json │ │ ├── Resources.de-DE.json │ │ ├── Resources.es-ES.json │ │ ├── Resources.fr-FR.json │ │ ├── Resources.hu-HU.json │ │ ├── Resources.it-IT.json │ │ ├── Resources.ja-JP.json │ │ ├── Resources.json │ │ ├── Resources.ko-KR.json │ │ ├── Resources.nl-NL.json │ │ ├── Resources.pl-PL.json │ │ ├── Resources.pt-BR.json │ │ ├── Resources.pt-PT.json │ │ ├── Resources.ru-RU.json │ │ ├── Resources.sv-SE.json │ │ ├── Resources.tr-TR.json │ │ ├── Resources.zh-CN.json │ │ └── Resources.zh-TW.json │ │ ├── templates │ │ └── templates.json │ │ └── version.txt ├── dark │ ├── AddFunction.svg │ └── CreateNewProject.svg ├── dotnetJsonCli │ ├── Microsoft.DotNet.Cli.CommandLine.dll │ ├── Microsoft.TemplateEngine.Abstractions.dll │ ├── Microsoft.TemplateEngine.Cli.dll │ ├── Microsoft.TemplateEngine.Core.Contracts.dll │ ├── Microsoft.TemplateEngine.Core.dll │ ├── Microsoft.TemplateEngine.Edge.dll │ ├── Microsoft.TemplateEngine.JsonCli.deps.json │ ├── Microsoft.TemplateEngine.JsonCli.dll │ ├── Microsoft.TemplateEngine.JsonCli.runtimeconfig.json │ ├── Microsoft.TemplateEngine.Orchestrator.RunnableProjects.dll │ ├── Microsoft.TemplateEngine.Utils.dll │ ├── Microsoft.TemplateSearch.Common.dll │ └── Newtonsoft.Json.dll ├── durableTaskScheduler │ └── DurableTaskScheduler.svg ├── light │ ├── AddFunction.svg │ └── CreateNewProject.svg ├── readme │ ├── copyFunctionUrl.png │ ├── createFunction.png │ ├── debug.png │ ├── debug3.png │ ├── deploy.png │ ├── deploy │ │ ├── activityLog.png │ │ ├── copyFunctionUrl.png │ │ ├── createComplete.png │ │ ├── createFunctionApp.png │ │ ├── createResource.png │ │ └── deploy.png │ ├── deploy2.png │ └── deploy3.png └── walkthroughs │ ├── empty.md │ └── scenarios.md ├── src ├── FuncVersion.ts ├── FunctionAppResolver.ts ├── How to parse v2 Templates.md ├── LocalResourceProvider.ts ├── agent │ └── agentIntegration.ts ├── api │ └── git.d.ts ├── commands │ ├── CommandAttributes.ts │ ├── SubscriptionListStep.ts │ ├── addBinding │ │ ├── BindingCreateStep.ts │ │ ├── BindingDirectionStep.ts │ │ ├── BindingListStep.ts │ │ ├── IBindingWizardContext.ts │ │ ├── addBinding.ts │ │ ├── createBindingWizard.ts │ │ └── settingSteps │ │ │ ├── AzureConnectionCreateStepBase.ts │ │ │ ├── BindingNameStep.ts │ │ │ ├── BindingSettingStepBase.ts │ │ │ ├── BooleanPromptStep.ts │ │ │ ├── EnumPromptStep.ts │ │ │ ├── LocalAppSettingCreateStep.ts │ │ │ ├── LocalAppSettingListStep.ts │ │ │ ├── LocalAppSettingNameStep.ts │ │ │ ├── LocalAppSettingValueStep.ts │ │ │ ├── StorageConnectionCreateStep.ts │ │ │ ├── StorageTypePromptStep.ts │ │ │ ├── StringPromptStep.ts │ │ │ ├── addBindingSettingSteps.ts │ │ │ ├── cosmosDB │ │ │ ├── CosmosDBConnectionCreateStep.ts │ │ │ ├── CosmosDBListStep.ts │ │ │ └── ICosmosDBWizardContext.ts │ │ │ ├── eventHub │ │ │ ├── EventHubAuthRuleListStep.ts │ │ │ ├── EventHubConnectionCreateStep.ts │ │ │ ├── EventHubCreateStep.ts │ │ │ ├── EventHubListStep.ts │ │ │ ├── EventHubNameStep.ts │ │ │ └── IEventHubWizardContext.ts │ │ │ └── serviceBus │ │ │ ├── IServiceBusWizardContext.ts │ │ │ ├── ServiceBusConnectionCreateStep.ts │ │ │ └── ServiceBusListStep.ts │ ├── addMIConnections │ │ ├── AddMIConnectionsContext.ts │ │ ├── ConnectionsListStep.ts │ │ ├── LocalSettingsAddStep.ts │ │ ├── RemoteSettingsAddStep.ts │ │ ├── SettingsAddBaseStep.ts │ │ ├── addLocalMIConnections.ts │ │ └── addRemoteMIConnections.ts │ ├── api │ │ ├── createFunctionFromApi.ts │ │ ├── downloadAppSettingsFromApi.ts │ │ ├── revealTreeItem.ts │ │ └── uploadAppSettingsFromApi.ts │ ├── appSettings │ │ ├── connectionSettings │ │ │ ├── IConnectionTypesContext.ts │ │ │ ├── ISetConnectionSettingContext.ts │ │ │ ├── azureWebJobsStorage │ │ │ │ ├── IStorageConnectionWizardContext.ts │ │ │ │ ├── StorageConnectionListStep.ts │ │ │ │ ├── StorageConnectionSetSettingStep.ts │ │ │ │ ├── azure │ │ │ │ │ └── StorageAccountGetConnectionStep.ts │ │ │ │ ├── emulator │ │ │ │ │ └── StorageEmulatorGetConnectionStep.ts │ │ │ │ ├── getStorageConnection.ts │ │ │ │ ├── getStorageConnectionString.ts │ │ │ │ ├── getStorageLocalProjectConnections.ts │ │ │ │ └── setConnectionSetting.ts │ │ │ ├── durableTaskScheduler │ │ │ │ ├── DTSConnectionListStep.ts │ │ │ │ ├── DTSConnectionSetSettingStep.ts │ │ │ │ ├── DTSHubNameSetSettingStep.ts │ │ │ │ ├── IDTSConnectionWizardContext.ts │ │ │ │ ├── azure │ │ │ │ │ ├── DTSStartingResourcesLogStep.ts │ │ │ │ │ ├── DurableTaskHubCreateStep.ts │ │ │ │ │ ├── DurableTaskHubListStep.ts │ │ │ │ │ ├── DurableTaskHubNameStep.ts │ │ │ │ │ ├── DurableTaskSchedulerCreateStep.ts │ │ │ │ │ ├── DurableTaskSchedulerGetConnectionStep.ts │ │ │ │ │ ├── DurableTaskSchedulerListStep.ts │ │ │ │ │ └── DurableTaskSchedulerNameStep.ts │ │ │ │ ├── custom │ │ │ │ │ ├── DTSConnectionCustomPromptStep.ts │ │ │ │ │ └── DTSHubNameCustomPromptStep.ts │ │ │ │ ├── emulator │ │ │ │ │ ├── DTSEmulatorGetConnectionsStep.ts │ │ │ │ │ └── DTSEmulatorStartStep.ts │ │ │ │ ├── getDTSConnection.ts │ │ │ │ └── getDTSLocalProjectConnections.ts │ │ │ ├── getVariableSubstitutedKey.ts │ │ │ ├── netherite │ │ │ │ ├── EventHubSetSettingStep.ts │ │ │ │ ├── EventHubsConnectionListStep.ts │ │ │ │ ├── EventHubsNamespaceSetSettingStep.ts │ │ │ │ ├── INetheriteConnectionWizardContext.ts │ │ │ │ ├── azure │ │ │ │ │ ├── EventHubCreateStep.ts │ │ │ │ │ ├── EventHubGetConnectionStep.ts │ │ │ │ │ ├── EventHubListStep.ts │ │ │ │ │ ├── EventHubNameStep.ts │ │ │ │ │ ├── EventHubsNamespaceAuthRuleCreateStep.ts │ │ │ │ │ ├── EventHubsNamespaceAuthRuleListStep.ts │ │ │ │ │ ├── EventHubsNamespaceAuthRuleNameStep.ts │ │ │ │ │ ├── EventHubsNamespaceCreateStep.ts │ │ │ │ │ ├── EventHubsNamespaceGetConnectionStep.ts │ │ │ │ │ ├── EventHubsNamespaceListStep.ts │ │ │ │ │ └── EventHubsNamespaceNameStep.ts │ │ │ │ ├── emulator │ │ │ │ │ ├── NetheriteEmulatorGetConnectionStep.ts │ │ │ │ │ └── NetheriteHostEventHubNameStep.ts │ │ │ │ ├── getNetheriteConnection.ts │ │ │ │ └── getNetheriteLocalProjectConnections.ts │ │ │ ├── notifyFailedToConfigureHost.ts │ │ │ ├── setConnectionSetting.ts │ │ │ └── sqlDatabase │ │ │ │ ├── ISqlDatabaseConnectionWizardContext.ts │ │ │ │ ├── SqlConnectionListStep.ts │ │ │ │ ├── SqlDbConnectionSetSettingStep.ts │ │ │ │ ├── azure │ │ │ │ ├── SqlDatabaseCreateStep.ts │ │ │ │ ├── SqlDatabaseGetConnectionStep.ts │ │ │ │ ├── SqlDatabaseListStep.ts │ │ │ │ ├── SqlDatabaseNameStep.ts │ │ │ │ ├── SqlServerCreateStep.ts │ │ │ │ ├── SqlServerListStep.ts │ │ │ │ ├── SqlServerNameStep.ts │ │ │ │ ├── SqlServerPasswordAuthStep.ts │ │ │ │ └── SqlServerUsernameAuthStep.ts │ │ │ │ ├── custom │ │ │ │ └── SqlDbConnectionCustomPromptStep.ts │ │ │ │ ├── getSQLConnection.ts │ │ │ │ └── getSqlDbLocalProjectConnections.ts │ │ ├── downloadAppSettings.ts │ │ ├── localSettings │ │ │ ├── LocalSettingsClient.ts │ │ │ ├── decryptLocalSettings.ts │ │ │ ├── encryptLocalSettings.ts │ │ │ ├── getLocalSettingsFile.ts │ │ │ └── setAzureWebJobsStorage.ts │ │ ├── toggleSlotSetting.ts │ │ └── uploadAppSettings.ts │ ├── browseWebsite.ts │ ├── configureDeploymentSource.ts │ ├── copyFunctionUrl.ts │ ├── createChildNode.ts │ ├── createFunction │ │ ├── FunctionCreateStepBase.ts │ │ ├── FunctionListStep.ts │ │ ├── FunctionNameStepBase.ts │ │ ├── FunctionSubWizard.ts │ │ ├── IFunctionWizardContext.ts │ │ ├── JobsListStep.ts │ │ ├── actionStepsV2 │ │ │ ├── ActionSchemaStepBase.ts │ │ │ ├── AppendToFileExecuteStep.ts │ │ │ ├── GetTemplateFileContentExecuteStep.ts │ │ │ ├── JobNameExecuteStep.ts │ │ │ ├── ShowMarkdownPreviewExecuteStep.ts │ │ │ ├── WriteToFileExecuteStep.ts │ │ │ └── actionStepFactory.ts │ │ ├── ballerinaSteps │ │ │ ├── BallerinaFunctionCreateStep.ts │ │ │ ├── BallerinaFunctionNameStep.ts │ │ │ └── IBallerinaFunctionWizardContext.ts │ │ ├── createFunction.ts │ │ ├── dotnetSteps │ │ │ ├── DotnetFunctionCreateStep.ts │ │ │ ├── DotnetFunctionNameStep.ts │ │ │ ├── DotnetNamespaceStep.ts │ │ │ └── IDotnetFunctionWizardContext.ts │ │ ├── durableSteps │ │ │ ├── DurableProjectConfigureStep.ts │ │ │ └── DurableStorageTypePromptStep.ts │ │ ├── javaSteps │ │ │ ├── IJavaFunctionWizardContext.ts │ │ │ ├── JavaFunctionCreateStep.ts │ │ │ └── JavaFunctionNameStep.ts │ │ ├── openAPISteps │ │ │ ├── OpenAPICreateStep.ts │ │ │ └── OpenAPIGetSpecificationFileStep.ts │ │ ├── promptStepsV2 │ │ │ ├── BooleanInputStep.ts │ │ │ ├── EnumInputStep.ts │ │ │ ├── ExistingFileStep.ts │ │ │ ├── NewFileStep.ts │ │ │ ├── PromptSchemaStepBase.ts │ │ │ ├── QuickPickInputStep.ts │ │ │ ├── StringInputStep.ts │ │ │ └── promptStepFactory.ts │ │ └── scriptSteps │ │ │ ├── IPythonFunctionWizardContext.ts │ │ │ ├── IScriptFunctionWizardContext.ts │ │ │ ├── NodeV4FunctionCreateStep.ts │ │ │ ├── NodeV4FunctionNameStep.ts │ │ │ ├── ScriptFunctionCreateStep.ts │ │ │ ├── ScriptFunctionNameStep.ts │ │ │ └── TypeScriptFunctionCreateStep.ts │ ├── createFunctionApp │ │ ├── AuthenticationPromptStep.ts │ │ ├── FunctionAppCreateStep.ts │ │ ├── FunctionAppHostingPlanStep.ts │ │ ├── IFunctionAppWizardContext.ts │ │ ├── UniqueNamePromptStep.ts │ │ ├── containerImage │ │ │ ├── ContainerizedFunctionAppCreateStep.ts │ │ │ ├── DeployWorkspaceProjectStep.ts │ │ │ └── detectDockerfile.ts │ │ ├── createCreateFunctionAppComponents.ts │ │ ├── createFunctionApp.ts │ │ ├── flex │ │ │ ├── InstanceMemoryMBPromptStep.ts │ │ │ └── MaximumInstanceCountPromptStep.ts │ │ └── stacks │ │ │ ├── FunctionAppEOLWarningStep.ts │ │ │ ├── FunctionAppStackStep.ts │ │ │ ├── backupStacks.ts │ │ │ ├── getStackPicks.ts │ │ │ └── models │ │ │ ├── AppStackModel.ts │ │ │ ├── FlexSkuModel.ts │ │ │ └── FunctionAppStackModel.ts │ ├── createNewProject │ │ ├── FolderListStep.ts │ │ ├── IProjectWizardContext.ts │ │ ├── NewProjectLanguageStep.ts │ │ ├── OpenBehaviorStep.ts │ │ ├── OpenFolderStep.ts │ │ ├── ProgrammingModelStep.ts │ │ ├── ProjectCreateStep │ │ │ ├── BallerinaProjectCreateStep.ts │ │ │ ├── CustomProjectCreateStep.ts │ │ │ ├── DotnetProjectCreateStep.ts │ │ │ ├── GradleProjectCreateSteps.ts │ │ │ ├── JavaScriptProjectCreateStep.ts │ │ │ ├── MavenProjectCreateSteps.ts │ │ │ ├── PowerShellProjectCreateStep.ts │ │ │ ├── ProjectCreateStepBase.ts │ │ │ ├── PythonProjectCreateStep.ts │ │ │ ├── ScriptProjectCreateStep.ts │ │ │ └── TypeScriptProjectCreateStep.ts │ │ ├── ballerinaSteps │ │ │ ├── BallerinaBackendStep.ts │ │ │ ├── IBallerinaProjectWizardContext.ts │ │ │ └── addBallerinaCreateProjectSteps.ts │ │ ├── createNewProject.ts │ │ ├── dockerfileSteps │ │ │ └── CreateDockerfileProjectStep.ts │ │ ├── dotnetSteps │ │ │ └── DotnetRuntimeStep.ts │ │ ├── javaSteps │ │ │ ├── IJavaProjectWizardContext.ts │ │ │ ├── JavaAppNameStep.ts │ │ │ ├── JavaArtifactIdStep.ts │ │ │ ├── JavaBuildToolStep.ts │ │ │ ├── JavaGroupIdStep.ts │ │ │ ├── JavaPackageNameStep.ts │ │ │ ├── JavaProjectVersionStep.ts │ │ │ ├── JavaVersionStep.ts │ │ │ ├── JavaVersions.ts │ │ │ └── addJavaCreateProjectSteps.ts │ │ ├── mcpServerSteps │ │ │ ├── MCPDownloadSnippetsExecuteStep.ts │ │ │ ├── MCPDownloadSnippetsPromptStep.ts │ │ │ ├── MCPProjectCreateStep.ts │ │ │ └── MCPServerLanguagePromptStep.ts │ │ ├── pythonSteps │ │ │ ├── EnterPythonAliasStep.ts │ │ │ ├── IPythonVenvWizardContext.ts │ │ │ ├── PythonAliasListStep.ts │ │ │ ├── PythonVenvCreateStep.ts │ │ │ └── pythonVersion.ts │ │ └── verifyIsProject.ts │ ├── createSlot.ts │ ├── deleteContainerizedFunctionApp │ │ ├── DeleteContainerizedFunctionAppStep.ts │ │ └── DeleteFunctionAppWizardContext.ts │ ├── deleteFunction.ts │ ├── deleteFunctionApp.ts │ ├── deleteNode.ts │ ├── deploy │ │ ├── CreateRemoteMcpServerExecuteStep.ts │ │ ├── DeployFunctionCoreToolsStep.ts │ │ ├── FunctionAppListStep.ts │ │ ├── deploy.ts │ │ ├── getOrCreateFunctionApp.ts │ │ ├── getWarningForExtensionBundle.ts │ │ ├── getWarningsForConnectionSettings.ts │ │ ├── notifyDeployComplete.ts │ │ ├── promptForEventGrid.ts │ │ ├── runPreDeployTask.ts │ │ ├── showCoreToolsWarning.ts │ │ ├── validateRemoteBuild.ts │ │ └── verifyAppSettings.ts │ ├── deployments │ │ ├── connectToGitHub.ts │ │ ├── disconnectRepo.ts │ │ ├── redeployDeployment.ts │ │ ├── viewCommitInGitHub.ts │ │ └── viewDeploymentLogs.ts │ ├── durableTaskScheduler │ │ ├── copyEmulatorConnectionString.ts │ │ ├── copySchedulerConnectionString.ts │ │ ├── copySchedulerEndpoint.ts │ │ ├── createScheduler.ts │ │ ├── createTaskHub.ts │ │ ├── deleteScheduler.ts │ │ ├── deleteTaskHub.ts │ │ ├── openTaskHubDashboard.ts │ │ ├── startEmulator.ts │ │ └── stopEmulator.ts │ ├── editAppSetting.ts │ ├── executeFunction │ │ ├── eventGrid │ │ │ ├── EventGridCodeLensProvider.ts │ │ │ ├── EventGridExecuteFunctionContext.ts │ │ │ ├── EventGridFileOpenStep.ts │ │ │ ├── EventGridSourceStep.ts │ │ │ ├── EventGridTypeStep.ts │ │ │ ├── eventGridSources.ts │ │ │ ├── executeEventGridFunction.ts │ │ │ └── sendEventGridRequest.ts │ │ └── executeFunction.ts │ ├── getMcpHostKey.ts │ ├── identity │ │ ├── EnableSystemIdentityStep.ts │ │ ├── FunctionAppUserAssignedIdentitiesListStep.ts │ │ ├── ManagedIdentityAssignContext.ts │ │ ├── ManagedIdentityAssignStep.ts │ │ ├── ManagedIdentityUnassignStep.ts │ │ ├── assignManagedIdentity.ts │ │ ├── enableSystemIdentity.ts │ │ └── unassignManagedIdentity.ts │ ├── initProjectForVSCode │ │ ├── InitVSCodeLanguageStep.ts │ │ ├── InitVSCodeStep │ │ │ ├── BallerinaInitVSCodeStep.ts │ │ │ ├── DotnetInitVSCodeStep.ts │ │ │ ├── DotnetScriptInitVSCodeStep.ts │ │ │ ├── InitVSCodeStepBase.ts │ │ │ ├── JavaInitVSCodeStep.ts │ │ │ ├── JavaScriptInitVSCodeStep.ts │ │ │ ├── MCPServerInitVSCodeStep.ts │ │ │ ├── PowerShellInitVSCodeStep.ts │ │ │ ├── PythonInitVSCodeStep.ts │ │ │ ├── ScriptInitVSCodeStep.ts │ │ │ └── TypeScriptInitVSCodeStep.ts │ │ ├── detectProjectLanguage.ts │ │ ├── initProjectForVSCode.ts │ │ ├── javaSteps │ │ │ └── addJavaInitVSCodeSteps.ts │ │ └── pythonSteps │ │ │ ├── PythonVenvListStep.ts │ │ │ └── addPythonInitVSCodeSteps.ts │ ├── logstream │ │ ├── enableFileLogging.ts │ │ ├── startStreamingLogs.ts │ │ └── stopStreamingLogs.ts │ ├── openFile.ts │ ├── openInPortal.ts │ ├── pickFuncProcess.ts │ ├── registerCommands.ts │ ├── remoteDebug │ │ ├── getRemoteDebugLanguage.ts │ │ └── startRemoteDebug.ts │ ├── remoteDebugJava │ │ ├── DebugProxy.ts │ │ └── remoteDebugJavaFunctionApp.ts │ ├── renameAppSetting.ts │ ├── restartFunctionApp.ts │ ├── startFunctionApp.ts │ ├── stopFunctionApp.ts │ ├── swapSlot.ts │ ├── updateDisabledState.ts │ └── viewProperties.ts ├── constants-nls.ts ├── constants.ts ├── debug │ ├── BallerinaDebugProvider.ts │ ├── FuncDebugProviderBase.ts │ ├── FuncTaskProvider.ts │ ├── JavaDebugProvider.ts │ ├── NodeDebugProvider.ts │ ├── PowerShellDebugProvider.ts │ ├── PythonDebugProvider.ts │ ├── PythonExtension.api.d.ts │ ├── storageProviders │ │ ├── validateDTSConnectionPreDebug.ts │ │ ├── validateNetheriteConnectionPreDebug.ts │ │ ├── validateSQLConnectionPreDebug.ts │ │ └── validateStorageConnectionPreDebug.ts │ └── validatePreDebug.ts ├── downloadAzureProject │ ├── handleUri.ts │ └── setupProjectFolder.ts ├── errors.ts ├── extension.ts ├── extensionVariables.ts ├── funcConfig │ ├── README.md │ ├── function.ts │ ├── host.ts │ └── local.settings.ts ├── funcCoreTools │ ├── funcHostTask.ts │ ├── generateLinuxErrorMessages.ts │ ├── getBrewPackageName.ts │ ├── getFuncCliPath.ts │ ├── getFuncPackageManagers.ts │ ├── getLocalFuncCoreToolsVersion.ts │ ├── getNpmDistTag.ts │ ├── hasMinFuncCliVersion.ts │ ├── installFuncCoreTools.ts │ ├── installOrUpdateFuncCoreTools.ts │ ├── tryGetLocalFuncVersion.ts │ ├── uninstallFuncCoreTools.ts │ ├── updateFuncCoreTools.ts │ ├── validateFuncCoreToolsInstalled.ts │ └── validateFuncCoreToolsIsLatest.ts ├── getExtensionApi.ts ├── localize.ts ├── templates │ ├── CentralTemplateProvider.ts │ ├── FunctionV2Template.ts │ ├── IBindingTemplate.ts │ ├── IFunctionTemplate.ts │ ├── ITemplates.ts │ ├── README.md │ ├── TemplateProviderBase.ts │ ├── ballerina │ │ ├── BallerinaTemplateProvider.ts │ │ └── getBallerinaVerifiedTemplateIds.ts │ ├── dotnet │ │ ├── DotnetTemplateProvider.ts │ │ ├── executeDotnetTemplateCommand.ts │ │ ├── getDotnetVerifiedTemplateIds.ts │ │ └── parseDotnetTemplates.ts │ ├── java │ │ ├── JavaTemplateProvider.ts │ │ └── getJavaVerifiedTemplateIds.ts │ └── script │ │ ├── NodeV4Provider.ts │ │ ├── PysteinTemplateProvider.ts │ │ ├── ScriptBundleTemplateProvider.ts │ │ ├── ScriptTemplateProvider.ts │ │ ├── getScriptResourcesLanguage.ts │ │ ├── getScriptVerifiedTemplateIds.ts │ │ ├── parseScriptTemplates.ts │ │ └── parseScriptTemplatesV2.ts ├── tree │ ├── AzureAccountTreeItemWithProjects.ts │ ├── FunctionBase.ts │ ├── FunctionTreeItemBase.ts │ ├── FunctionsTreeItemBase.ts │ ├── IProjectTreeItem.ts │ ├── ResolvedFunctionAppBase.ts │ ├── ResolvedFunctionAppResource.ts │ ├── SlotContainerTreeItemBase.ts │ ├── SlotTreeItem.ts │ ├── SlotsTreeItem.ts │ ├── SubscriptionTreeItem.ts │ ├── containerizedFunctionApp │ │ ├── AppSettingsClient.ts │ │ ├── ContainerFunctionItem.ts │ │ ├── ContainerFunctionTreeItem.ts │ │ ├── ContainerFunctionsTreeItem.ts │ │ ├── ContainerTreeItem.ts │ │ ├── ImageTreeItem.ts │ │ └── ResolvedContainerizedFunctionAppResource.ts │ ├── durableTaskScheduler │ │ ├── ContainerClient.ts │ │ ├── DurableTaskHubResourceModel.ts │ │ ├── DurableTaskSchedulerClient.ts │ │ ├── DurableTaskSchedulerDashboardModel.ts │ │ ├── DurableTaskSchedulerDataBranchProvider.ts │ │ ├── DurableTaskSchedulerEmulatorClient.ts │ │ ├── DurableTaskSchedulerEmulatorWorkspaceResourceModel.ts │ │ ├── DurableTaskSchedulerEmulatorsWorkspaceResource.ts │ │ ├── DurableTaskSchedulerEmulatorsWorkspaceResourceModel.ts │ │ ├── DurableTaskSchedulerEndpointModel.ts │ │ ├── DurableTaskSchedulerErrorWorkspaceResourceModel.ts │ │ ├── DurableTaskSchedulerModel.ts │ │ ├── DurableTaskSchedulerResourceModel.ts │ │ ├── DurableTaskSchedulerTaskHubWorkspaceResourceModel.ts │ │ ├── DurableTaskSchedulerWorkspaceDataBranchProvider.ts │ │ ├── DurableTaskSchedulerWorkspaceResourceModel.ts │ │ └── DurableTaskSchedulerWorkspaceResourceProvider.ts │ ├── localProject │ │ ├── InitLocalProjectTreeItem.ts │ │ ├── InvalidLocalProjectTreeItem.ts │ │ ├── LocalFunctionTreeItem.ts │ │ ├── LocalFunctionsTreeItem.ts │ │ ├── LocalProjectTreeItem.ts │ │ ├── LocalProjectTreeItemBase.ts │ │ └── createRefreshFileWatcher.ts │ ├── projectContextValues.ts │ └── remoteProject │ │ ├── ManagedIdentityTreeItem.ts │ │ ├── RemoteFunction.ts │ │ ├── RemoteFunctionTreeItem.ts │ │ ├── RemoteFunctionsTreeItem.ts │ │ ├── SystemIdentityTreeItemBase.ts │ │ ├── UserAssignedIdentitiesTreeItem.ts │ │ └── UserAssignedIdentityTreeItem.ts ├── utils │ ├── AzureActivity.ts │ ├── activityUtils.ts │ ├── azure.ts │ ├── azureClients.ts │ ├── ballerinaUtils.ts │ ├── bundleFeedUtils.ts │ ├── cancellation.ts │ ├── cliFeedUtils.ts │ ├── cpUtils.ts │ ├── delay.ts │ ├── dotnetUtils.ts │ ├── durableUtils.ts │ ├── envUtils.ts │ ├── feedUtils.ts │ ├── fs.ts │ ├── getCoreNodeModule.ts │ ├── gitUtils.ts │ ├── gradleUtils.ts │ ├── javaUtils.ts │ ├── managedIdentityUtils.ts │ ├── mavenUtils.ts │ ├── mcpUtils.ts │ ├── nodeJsUtils.ts │ ├── nonNull.ts │ ├── nugetUtils.ts │ ├── openUrl.ts │ ├── parseJson.ts │ ├── pickAppResource.ts │ ├── pickFunctionApp.ts │ ├── programmingModelUtils.ts │ ├── pythonUtils.ts │ ├── requestUtils.ts │ ├── taskUtils.ts │ ├── telemetryUtils.ts │ ├── templateVersionUtils.ts │ ├── textUtils.ts │ ├── treeUtils.ts │ ├── validateUtils.ts │ ├── venvUtils.ts │ ├── verifyExtensionBundle.ts │ ├── windowsProcessTree.ts │ └── workspace.ts ├── vsCodeConfig │ ├── README.md │ ├── extensions.ts │ ├── launch.ts │ ├── promptToReinitializeProject.ts │ ├── settings.ts │ ├── tasks.ts │ ├── verifyInitForVSCode.ts │ ├── verifyPythonVenv.ts │ ├── verifyTargetFramework.ts │ └── verifyVSCodeConfigOnActivate.ts ├── vscode-azurecontainerapps.api.d.ts ├── vscode-azurefunctions.api.d.ts └── workspace │ ├── LocalFunction.ts │ ├── LocalProject.ts │ ├── listLocalFunctions.ts │ └── listLocalProjects.ts ├── test ├── .eslintrc.js ├── ParsedFunctionJson.test.ts ├── addParallelSuite.ts ├── api.test.ts ├── assertThrowsAsync.ts ├── convertToValidPackageName.test.ts ├── createFunction │ ├── FunctionTesterBase.ts │ ├── createFunction.CSharp.test.ts │ ├── createFunction.JavaScript.v1.test.ts │ └── createFunction.Script.v2.test.ts ├── envUtils.test.ts ├── fsUtils.test.ts ├── getScriptResourcesLanguage.test.ts ├── global.test.ts ├── hasMinFuncCliVersion.test.ts ├── index.ts ├── nightly │ ├── createProjectAndDeploy.test.ts │ ├── functionAppOperations.test.ts │ ├── getRotatingValue.ts │ └── global.nightly.test.ts ├── nugetUtils.test.ts ├── parseJson.test.ts ├── project │ ├── createAndValidateProject.ts │ ├── createNewProject.test.ts │ ├── createNewPythonProject.test.ts │ ├── initProjectForVSCode.test.ts │ └── validateProject.ts ├── runTest.ts ├── runWithSetting.ts ├── templateCount.test.ts ├── test.code-workspace ├── tryParseFuncVersion.test.ts ├── updateBackupTemplates.ts ├── utils │ └── javaUtils.ts ├── validateCSharpNamespace.test.ts ├── venvUtils.test.ts └── verifyVersionAndLanguage.test.ts ├── tools └── JsonCli │ ├── .azure-pipelines │ ├── 1esmain.yml │ └── main.yml │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── README.md │ ├── resources │ └── FinalPublicKey.snk │ └── src │ ├── CommandLineParser.cs │ ├── Installer.cs │ ├── Microsoft.TemplateEngine.JsonCli.csproj │ ├── Models │ └── Models.cs │ ├── Package.cs │ ├── Program.cs │ ├── Signing.csproj │ ├── nuget.config │ └── src.sln ├── tsconfig.json ├── vscode.proposed.authLearnMore.d.ts ├── vscode.proposed.authenticationChallenges.d.ts └── webpack.config.js /.azure-pipelines/1esmain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/1esmain.yml -------------------------------------------------------------------------------- /.azure-pipelines/SignExtension.signproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/SignExtension.signproj -------------------------------------------------------------------------------- /.azure-pipelines/common/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/common/build.yml -------------------------------------------------------------------------------- /.azure-pipelines/common/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/common/lint.yml -------------------------------------------------------------------------------- /.azure-pipelines/common/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/common/package.yml -------------------------------------------------------------------------------- /.azure-pipelines/common/sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/common/sbom.yml -------------------------------------------------------------------------------- /.azure-pipelines/common/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/common/test.yml -------------------------------------------------------------------------------- /.azure-pipelines/compliance/CredScanSuppressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/compliance/CredScanSuppressions.json -------------------------------------------------------------------------------- /.azure-pipelines/compliance/PoliCheckExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/compliance/PoliCheckExclusions.xml -------------------------------------------------------------------------------- /.azure-pipelines/compliance/compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/compliance/compliance.yml -------------------------------------------------------------------------------- /.azure-pipelines/compliance/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/compliance/tsaoptions.json -------------------------------------------------------------------------------- /.azure-pipelines/linux/xvfb.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/linux/xvfb.init -------------------------------------------------------------------------------- /.azure-pipelines/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/main.yml -------------------------------------------------------------------------------- /.azure-pipelines/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.azure-pipelines/release.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | gulpfile.ts 2 | .eslintrc.js 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | NOTICE.html linguist-vendored=true 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Microsoft/vscodeazuretoolsdev 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/bump-version-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/workflows/bump-version-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/workflows/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/info-needed-closer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/workflows/info-needed-closer.yml -------------------------------------------------------------------------------- /.github/workflows/locker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/workflows/locker.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx vscode-sort-package-json 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.18.1 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/NOTICE.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /extension.bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/extension.bundle.ts -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/package.nls.json -------------------------------------------------------------------------------- /resources/ManagedIdentityUserAssignedIdentities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/ManagedIdentityUserAssignedIdentities.svg -------------------------------------------------------------------------------- /resources/azFuncFunction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azFuncFunction.svg -------------------------------------------------------------------------------- /resources/azFuncProductionSlot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azFuncProductionSlot.svg -------------------------------------------------------------------------------- /resources/azFuncProxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azFuncProxy.svg -------------------------------------------------------------------------------- /resources/azFuncSlot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azFuncSlot.svg -------------------------------------------------------------------------------- /resources/azFuncSlots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azFuncSlots.svg -------------------------------------------------------------------------------- /resources/azure-functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azure-functions.png -------------------------------------------------------------------------------- /resources/azure-functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/azure-functions.svg -------------------------------------------------------------------------------- /resources/backupTemplates/Microsoft.Azure.Functions.ExtensionBundle/version.txt: -------------------------------------------------------------------------------- 1 | 4.17.0 -------------------------------------------------------------------------------- /resources/backupTemplates/ballerina/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/ballerina/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/ballerina/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/ballerina/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/ballerina/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/ballerina/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/ballerina/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~1/net48/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~1/net48/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~1/net48/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~1/net48/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~1/version.txt: -------------------------------------------------------------------------------- 1 | 1.13.2 -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~2/netcoreapp2.1/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~2/netcoreapp2.1/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~2/netcoreapp2.1/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~2/netcoreapp2.1/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~2/version.txt: -------------------------------------------------------------------------------- 1 | 2.60.0 -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~3/net5.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~3/net5.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~3/net5.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~3/net5.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~3/netcoreapp3.1/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~3/netcoreapp3.1/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~3/netcoreapp3.1/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~3/netcoreapp3.1/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~3/version.txt: -------------------------------------------------------------------------------- 1 | 3.50.0 -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net5.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net5.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net5.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net5.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net6.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net6.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net6.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net6.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net6.0/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net6.0/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net6.0/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net6.0/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net7.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net7.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net7.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net7.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net8.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net8.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net8.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net8.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net9.0-isolated/item.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net9.0-isolated/item.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/net9.0-isolated/project.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/dotnet/~4/net9.0-isolated/project.nupkg -------------------------------------------------------------------------------- /resources/backupTemplates/dotnet/~4/version.txt: -------------------------------------------------------------------------------- 1 | 4.104.0 -------------------------------------------------------------------------------- /resources/backupTemplates/java/~2/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~2/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~2/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~2/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~2/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~2/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~2/version.txt: -------------------------------------------------------------------------------- 1 | 1.35.0 -------------------------------------------------------------------------------- /resources/backupTemplates/java/~3/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~3/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~3/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~3/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~3/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~3/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~3/version.txt: -------------------------------------------------------------------------------- 1 | 1.35.0 -------------------------------------------------------------------------------- /resources/backupTemplates/java/~4/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~4/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~4/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~4/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~4/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/java/~4/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/java/~4/version.txt: -------------------------------------------------------------------------------- 1 | 1.36.0 -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/resources/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/resources/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/nodejs-4.x/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/nodejs-4.x/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/bindings-v2/userPrompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/bindings-v2/userPrompts.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.Id-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.Id-id.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.en-US.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/resources-v2/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/resources-v2/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/templates-v2/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/pystein/templates-v2/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/pystein/version.txt: -------------------------------------------------------------------------------- 1 | 3.24.0 2 | -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/resources/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/resources/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~1/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~1/version.txt: -------------------------------------------------------------------------------- 1 | 1.13.2 -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/resources/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/resources/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~2/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~2/version.txt: -------------------------------------------------------------------------------- 1 | 2.60.0 -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/resources/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/resources/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~3/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~3/version.txt: -------------------------------------------------------------------------------- 1 | 3.50.0 -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/bindings/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/bindings/bindings.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.cs-CZ.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.de-DE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.es-ES.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.fr-FR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.hu-HU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.it-IT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.ja-JP.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.ko-KR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.nl-NL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.pl-PL.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.pt-BR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.pt-PT.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.ru-RU.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.sv-SE.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.tr-TR.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.zh-CN.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/resources/Resources.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/resources/Resources.zh-TW.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/templates/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/backupTemplates/script/~4/templates/templates.json -------------------------------------------------------------------------------- /resources/backupTemplates/script/~4/version.txt: -------------------------------------------------------------------------------- 1 | 4.104.0 -------------------------------------------------------------------------------- /resources/dark/AddFunction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dark/AddFunction.svg -------------------------------------------------------------------------------- /resources/dark/CreateNewProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dark/CreateNewProject.svg -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.DotNet.Cli.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.DotNet.Cli.CommandLine.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Abstractions.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Cli.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Core.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Core.Contracts.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Core.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Edge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Edge.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.deps.json -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.JsonCli.runtimeconfig.json -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateEngine.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateEngine.Utils.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Microsoft.TemplateSearch.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Microsoft.TemplateSearch.Common.dll -------------------------------------------------------------------------------- /resources/dotnetJsonCli/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/dotnetJsonCli/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /resources/durableTaskScheduler/DurableTaskScheduler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/durableTaskScheduler/DurableTaskScheduler.svg -------------------------------------------------------------------------------- /resources/light/AddFunction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/light/AddFunction.svg -------------------------------------------------------------------------------- /resources/light/CreateNewProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/light/CreateNewProject.svg -------------------------------------------------------------------------------- /resources/readme/copyFunctionUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/copyFunctionUrl.png -------------------------------------------------------------------------------- /resources/readme/createFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/createFunction.png -------------------------------------------------------------------------------- /resources/readme/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/debug.png -------------------------------------------------------------------------------- /resources/readme/debug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/debug3.png -------------------------------------------------------------------------------- /resources/readme/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy.png -------------------------------------------------------------------------------- /resources/readme/deploy/activityLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/activityLog.png -------------------------------------------------------------------------------- /resources/readme/deploy/copyFunctionUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/copyFunctionUrl.png -------------------------------------------------------------------------------- /resources/readme/deploy/createComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/createComplete.png -------------------------------------------------------------------------------- /resources/readme/deploy/createFunctionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/createFunctionApp.png -------------------------------------------------------------------------------- /resources/readme/deploy/createResource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/createResource.png -------------------------------------------------------------------------------- /resources/readme/deploy/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy/deploy.png -------------------------------------------------------------------------------- /resources/readme/deploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy2.png -------------------------------------------------------------------------------- /resources/readme/deploy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/readme/deploy3.png -------------------------------------------------------------------------------- /resources/walkthroughs/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/walkthroughs/empty.md -------------------------------------------------------------------------------- /resources/walkthroughs/scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/resources/walkthroughs/scenarios.md -------------------------------------------------------------------------------- /src/FuncVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/FuncVersion.ts -------------------------------------------------------------------------------- /src/FunctionAppResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/FunctionAppResolver.ts -------------------------------------------------------------------------------- /src/How to parse v2 Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/How to parse v2 Templates.md -------------------------------------------------------------------------------- /src/LocalResourceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/LocalResourceProvider.ts -------------------------------------------------------------------------------- /src/agent/agentIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/agent/agentIntegration.ts -------------------------------------------------------------------------------- /src/api/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/api/git.d.ts -------------------------------------------------------------------------------- /src/commands/CommandAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/CommandAttributes.ts -------------------------------------------------------------------------------- /src/commands/SubscriptionListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/SubscriptionListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/BindingCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/BindingCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/BindingDirectionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/BindingDirectionStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/BindingListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/BindingListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/IBindingWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/IBindingWizardContext.ts -------------------------------------------------------------------------------- /src/commands/addBinding/addBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/addBinding.ts -------------------------------------------------------------------------------- /src/commands/addBinding/createBindingWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/createBindingWizard.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/AzureConnectionCreateStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/AzureConnectionCreateStepBase.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/BindingNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/BindingNameStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/BindingSettingStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/BindingSettingStepBase.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/BooleanPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/BooleanPromptStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/EnumPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/EnumPromptStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/LocalAppSettingCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/LocalAppSettingCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/LocalAppSettingListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/LocalAppSettingListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/LocalAppSettingNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/LocalAppSettingNameStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/LocalAppSettingValueStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/LocalAppSettingValueStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/StorageConnectionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/StorageConnectionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/StorageTypePromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/StorageTypePromptStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/StringPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/StringPromptStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/addBindingSettingSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/addBindingSettingSteps.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/cosmosDB/CosmosDBConnectionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/cosmosDB/CosmosDBConnectionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/cosmosDB/CosmosDBListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/cosmosDB/CosmosDBListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/cosmosDB/ICosmosDBWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/cosmosDB/ICosmosDBWizardContext.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/EventHubAuthRuleListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/EventHubAuthRuleListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/EventHubConnectionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/EventHubConnectionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/EventHubCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/EventHubCreateStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/EventHubListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/EventHubListStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/EventHubNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/EventHubNameStep.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/eventHub/IEventHubWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/eventHub/IEventHubWizardContext.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/serviceBus/IServiceBusWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/serviceBus/IServiceBusWizardContext.ts -------------------------------------------------------------------------------- /src/commands/addBinding/settingSteps/serviceBus/ServiceBusListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addBinding/settingSteps/serviceBus/ServiceBusListStep.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/AddMIConnectionsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/AddMIConnectionsContext.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/ConnectionsListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/ConnectionsListStep.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/LocalSettingsAddStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/LocalSettingsAddStep.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/RemoteSettingsAddStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/RemoteSettingsAddStep.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/SettingsAddBaseStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/SettingsAddBaseStep.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/addLocalMIConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/addLocalMIConnections.ts -------------------------------------------------------------------------------- /src/commands/addMIConnections/addRemoteMIConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/addMIConnections/addRemoteMIConnections.ts -------------------------------------------------------------------------------- /src/commands/api/createFunctionFromApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/api/createFunctionFromApi.ts -------------------------------------------------------------------------------- /src/commands/api/downloadAppSettingsFromApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/api/downloadAppSettingsFromApi.ts -------------------------------------------------------------------------------- /src/commands/api/revealTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/api/revealTreeItem.ts -------------------------------------------------------------------------------- /src/commands/api/uploadAppSettingsFromApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/api/uploadAppSettingsFromApi.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/IConnectionTypesContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/IConnectionTypesContext.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/ISetConnectionSettingContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/ISetConnectionSettingContext.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/getVariableSubstitutedKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/getVariableSubstitutedKey.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/netherite/EventHubSetSettingStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/netherite/EventHubSetSettingStep.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/netherite/azure/EventHubListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/netherite/azure/EventHubListStep.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/netherite/azure/EventHubNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/netherite/azure/EventHubNameStep.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/netherite/getNetheriteConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/netherite/getNetheriteConnection.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/notifyFailedToConfigureHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/notifyFailedToConfigureHost.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/setConnectionSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/setConnectionSetting.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/sqlDatabase/SqlConnectionListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/sqlDatabase/SqlConnectionListStep.ts -------------------------------------------------------------------------------- /src/commands/appSettings/connectionSettings/sqlDatabase/getSQLConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/connectionSettings/sqlDatabase/getSQLConnection.ts -------------------------------------------------------------------------------- /src/commands/appSettings/downloadAppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/downloadAppSettings.ts -------------------------------------------------------------------------------- /src/commands/appSettings/localSettings/LocalSettingsClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/localSettings/LocalSettingsClient.ts -------------------------------------------------------------------------------- /src/commands/appSettings/localSettings/decryptLocalSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/localSettings/decryptLocalSettings.ts -------------------------------------------------------------------------------- /src/commands/appSettings/localSettings/encryptLocalSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/localSettings/encryptLocalSettings.ts -------------------------------------------------------------------------------- /src/commands/appSettings/localSettings/getLocalSettingsFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/localSettings/getLocalSettingsFile.ts -------------------------------------------------------------------------------- /src/commands/appSettings/localSettings/setAzureWebJobsStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/localSettings/setAzureWebJobsStorage.ts -------------------------------------------------------------------------------- /src/commands/appSettings/toggleSlotSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/toggleSlotSetting.ts -------------------------------------------------------------------------------- /src/commands/appSettings/uploadAppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/appSettings/uploadAppSettings.ts -------------------------------------------------------------------------------- /src/commands/browseWebsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/browseWebsite.ts -------------------------------------------------------------------------------- /src/commands/configureDeploymentSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/configureDeploymentSource.ts -------------------------------------------------------------------------------- /src/commands/copyFunctionUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/copyFunctionUrl.ts -------------------------------------------------------------------------------- /src/commands/createChildNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createChildNode.ts -------------------------------------------------------------------------------- /src/commands/createFunction/FunctionCreateStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/FunctionCreateStepBase.ts -------------------------------------------------------------------------------- /src/commands/createFunction/FunctionListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/FunctionListStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/FunctionNameStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/FunctionNameStepBase.ts -------------------------------------------------------------------------------- /src/commands/createFunction/FunctionSubWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/FunctionSubWizard.ts -------------------------------------------------------------------------------- /src/commands/createFunction/IFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/IFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/JobsListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/JobsListStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/ActionSchemaStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/ActionSchemaStepBase.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/AppendToFileExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/AppendToFileExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/GetTemplateFileContentExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/GetTemplateFileContentExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/JobNameExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/JobNameExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/ShowMarkdownPreviewExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/ShowMarkdownPreviewExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/WriteToFileExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/WriteToFileExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/actionStepsV2/actionStepFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/actionStepsV2/actionStepFactory.ts -------------------------------------------------------------------------------- /src/commands/createFunction/ballerinaSteps/BallerinaFunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/ballerinaSteps/BallerinaFunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/ballerinaSteps/BallerinaFunctionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/ballerinaSteps/BallerinaFunctionNameStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/ballerinaSteps/IBallerinaFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/ballerinaSteps/IBallerinaFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/createFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/createFunction.ts -------------------------------------------------------------------------------- /src/commands/createFunction/dotnetSteps/DotnetFunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/dotnetSteps/DotnetFunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/dotnetSteps/DotnetFunctionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/dotnetSteps/DotnetFunctionNameStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/dotnetSteps/DotnetNamespaceStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/dotnetSteps/DotnetNamespaceStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/dotnetSteps/IDotnetFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/dotnetSteps/IDotnetFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/durableSteps/DurableProjectConfigureStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/durableSteps/DurableProjectConfigureStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/durableSteps/DurableStorageTypePromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/durableSteps/DurableStorageTypePromptStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/javaSteps/IJavaFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/javaSteps/IJavaFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/javaSteps/JavaFunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/javaSteps/JavaFunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/javaSteps/JavaFunctionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/javaSteps/JavaFunctionNameStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/openAPISteps/OpenAPICreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/openAPISteps/OpenAPICreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/openAPISteps/OpenAPIGetSpecificationFileStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/openAPISteps/OpenAPIGetSpecificationFileStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/BooleanInputStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/BooleanInputStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/EnumInputStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/EnumInputStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/ExistingFileStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/ExistingFileStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/NewFileStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/NewFileStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/PromptSchemaStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/PromptSchemaStepBase.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/QuickPickInputStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/QuickPickInputStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/StringInputStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/StringInputStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/promptStepsV2/promptStepFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/promptStepsV2/promptStepFactory.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/IPythonFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/IPythonFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/IScriptFunctionWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/IScriptFunctionWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/NodeV4FunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/NodeV4FunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/NodeV4FunctionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/NodeV4FunctionNameStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/ScriptFunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/ScriptFunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/ScriptFunctionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/ScriptFunctionNameStep.ts -------------------------------------------------------------------------------- /src/commands/createFunction/scriptSteps/TypeScriptFunctionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunction/scriptSteps/TypeScriptFunctionCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/AuthenticationPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/AuthenticationPromptStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/FunctionAppCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/FunctionAppCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/FunctionAppHostingPlanStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/FunctionAppHostingPlanStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/IFunctionAppWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/IFunctionAppWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/UniqueNamePromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/UniqueNamePromptStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/containerImage/DeployWorkspaceProjectStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/containerImage/DeployWorkspaceProjectStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/containerImage/detectDockerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/containerImage/detectDockerfile.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/createCreateFunctionAppComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/createCreateFunctionAppComponents.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/createFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/createFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/flex/InstanceMemoryMBPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/flex/InstanceMemoryMBPromptStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/flex/MaximumInstanceCountPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/flex/MaximumInstanceCountPromptStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/FunctionAppEOLWarningStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/FunctionAppEOLWarningStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/FunctionAppStackStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/FunctionAppStackStep.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/backupStacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/backupStacks.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/getStackPicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/getStackPicks.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/models/AppStackModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/models/AppStackModel.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/models/FlexSkuModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/models/FlexSkuModel.ts -------------------------------------------------------------------------------- /src/commands/createFunctionApp/stacks/models/FunctionAppStackModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createFunctionApp/stacks/models/FunctionAppStackModel.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/FolderListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/FolderListStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/IProjectWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/IProjectWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/NewProjectLanguageStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/NewProjectLanguageStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/OpenBehaviorStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/OpenBehaviorStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/OpenFolderStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/OpenFolderStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProgrammingModelStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProgrammingModelStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/BallerinaProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/BallerinaProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/CustomProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/CustomProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/DotnetProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/DotnetProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/GradleProjectCreateSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/GradleProjectCreateSteps.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/JavaScriptProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/JavaScriptProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/MavenProjectCreateSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/MavenProjectCreateSteps.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/PowerShellProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/PowerShellProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/ProjectCreateStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/ProjectCreateStepBase.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/PythonProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/PythonProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/ScriptProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ProjectCreateStep/TypeScriptProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ProjectCreateStep/TypeScriptProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ballerinaSteps/BallerinaBackendStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ballerinaSteps/BallerinaBackendStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ballerinaSteps/IBallerinaProjectWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ballerinaSteps/IBallerinaProjectWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/ballerinaSteps/addBallerinaCreateProjectSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/ballerinaSteps/addBallerinaCreateProjectSteps.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/createNewProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/createNewProject.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/dockerfileSteps/CreateDockerfileProjectStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/dockerfileSteps/CreateDockerfileProjectStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/dotnetSteps/DotnetRuntimeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/dotnetSteps/DotnetRuntimeStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/IJavaProjectWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/IJavaProjectWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaAppNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaAppNameStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaArtifactIdStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaArtifactIdStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaBuildToolStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaBuildToolStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaGroupIdStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaGroupIdStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaPackageNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaPackageNameStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaProjectVersionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaProjectVersionStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaVersionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaVersionStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/JavaVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/JavaVersions.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/javaSteps/addJavaCreateProjectSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/javaSteps/addJavaCreateProjectSteps.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/mcpServerSteps/MCPDownloadSnippetsExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/mcpServerSteps/MCPDownloadSnippetsExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/mcpServerSteps/MCPDownloadSnippetsPromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/mcpServerSteps/MCPDownloadSnippetsPromptStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/mcpServerSteps/MCPProjectCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/mcpServerSteps/MCPProjectCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/mcpServerSteps/MCPServerLanguagePromptStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/mcpServerSteps/MCPServerLanguagePromptStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/pythonSteps/EnterPythonAliasStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/pythonSteps/EnterPythonAliasStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/pythonSteps/IPythonVenvWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/pythonSteps/IPythonVenvWizardContext.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/pythonSteps/PythonAliasListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/pythonSteps/PythonAliasListStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/pythonSteps/PythonVenvCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/pythonSteps/PythonVenvCreateStep.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/pythonSteps/pythonVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/pythonSteps/pythonVersion.ts -------------------------------------------------------------------------------- /src/commands/createNewProject/verifyIsProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createNewProject/verifyIsProject.ts -------------------------------------------------------------------------------- /src/commands/createSlot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/createSlot.ts -------------------------------------------------------------------------------- /src/commands/deleteContainerizedFunctionApp/DeleteFunctionAppWizardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deleteContainerizedFunctionApp/DeleteFunctionAppWizardContext.ts -------------------------------------------------------------------------------- /src/commands/deleteFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deleteFunction.ts -------------------------------------------------------------------------------- /src/commands/deleteFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deleteFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/deleteNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deleteNode.ts -------------------------------------------------------------------------------- /src/commands/deploy/CreateRemoteMcpServerExecuteStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/CreateRemoteMcpServerExecuteStep.ts -------------------------------------------------------------------------------- /src/commands/deploy/DeployFunctionCoreToolsStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/DeployFunctionCoreToolsStep.ts -------------------------------------------------------------------------------- /src/commands/deploy/FunctionAppListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/FunctionAppListStep.ts -------------------------------------------------------------------------------- /src/commands/deploy/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/deploy.ts -------------------------------------------------------------------------------- /src/commands/deploy/getOrCreateFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/getOrCreateFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/deploy/getWarningForExtensionBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/getWarningForExtensionBundle.ts -------------------------------------------------------------------------------- /src/commands/deploy/getWarningsForConnectionSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/getWarningsForConnectionSettings.ts -------------------------------------------------------------------------------- /src/commands/deploy/notifyDeployComplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/notifyDeployComplete.ts -------------------------------------------------------------------------------- /src/commands/deploy/promptForEventGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/promptForEventGrid.ts -------------------------------------------------------------------------------- /src/commands/deploy/runPreDeployTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/runPreDeployTask.ts -------------------------------------------------------------------------------- /src/commands/deploy/showCoreToolsWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/showCoreToolsWarning.ts -------------------------------------------------------------------------------- /src/commands/deploy/validateRemoteBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/validateRemoteBuild.ts -------------------------------------------------------------------------------- /src/commands/deploy/verifyAppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deploy/verifyAppSettings.ts -------------------------------------------------------------------------------- /src/commands/deployments/connectToGitHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deployments/connectToGitHub.ts -------------------------------------------------------------------------------- /src/commands/deployments/disconnectRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deployments/disconnectRepo.ts -------------------------------------------------------------------------------- /src/commands/deployments/redeployDeployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deployments/redeployDeployment.ts -------------------------------------------------------------------------------- /src/commands/deployments/viewCommitInGitHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deployments/viewCommitInGitHub.ts -------------------------------------------------------------------------------- /src/commands/deployments/viewDeploymentLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/deployments/viewDeploymentLogs.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/copyEmulatorConnectionString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/copyEmulatorConnectionString.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/copySchedulerConnectionString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/copySchedulerConnectionString.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/copySchedulerEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/copySchedulerEndpoint.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/createScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/createScheduler.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/createTaskHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/createTaskHub.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/deleteScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/deleteScheduler.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/deleteTaskHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/deleteTaskHub.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/openTaskHubDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/openTaskHubDashboard.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/startEmulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/startEmulator.ts -------------------------------------------------------------------------------- /src/commands/durableTaskScheduler/stopEmulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/durableTaskScheduler/stopEmulator.ts -------------------------------------------------------------------------------- /src/commands/editAppSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/editAppSetting.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/EventGridCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/EventGridCodeLensProvider.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/EventGridExecuteFunctionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/EventGridExecuteFunctionContext.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/EventGridFileOpenStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/EventGridFileOpenStep.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/EventGridSourceStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/EventGridSourceStep.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/EventGridTypeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/EventGridTypeStep.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/eventGridSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/eventGridSources.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/executeEventGridFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/executeEventGridFunction.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/eventGrid/sendEventGridRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/eventGrid/sendEventGridRequest.ts -------------------------------------------------------------------------------- /src/commands/executeFunction/executeFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/executeFunction/executeFunction.ts -------------------------------------------------------------------------------- /src/commands/getMcpHostKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/getMcpHostKey.ts -------------------------------------------------------------------------------- /src/commands/identity/EnableSystemIdentityStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/EnableSystemIdentityStep.ts -------------------------------------------------------------------------------- /src/commands/identity/FunctionAppUserAssignedIdentitiesListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/FunctionAppUserAssignedIdentitiesListStep.ts -------------------------------------------------------------------------------- /src/commands/identity/ManagedIdentityAssignContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/ManagedIdentityAssignContext.ts -------------------------------------------------------------------------------- /src/commands/identity/ManagedIdentityAssignStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/ManagedIdentityAssignStep.ts -------------------------------------------------------------------------------- /src/commands/identity/ManagedIdentityUnassignStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/ManagedIdentityUnassignStep.ts -------------------------------------------------------------------------------- /src/commands/identity/assignManagedIdentity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/assignManagedIdentity.ts -------------------------------------------------------------------------------- /src/commands/identity/enableSystemIdentity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/enableSystemIdentity.ts -------------------------------------------------------------------------------- /src/commands/identity/unassignManagedIdentity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/identity/unassignManagedIdentity.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeLanguageStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeLanguageStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/BallerinaInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/BallerinaInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/DotnetInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/DotnetInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/DotnetScriptInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/DotnetScriptInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/InitVSCodeStepBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/InitVSCodeStepBase.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/JavaInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/JavaInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/JavaScriptInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/JavaScriptInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/MCPServerInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/MCPServerInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/PowerShellInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/PowerShellInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/PythonInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/PythonInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/ScriptInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/ScriptInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/InitVSCodeStep/TypeScriptInitVSCodeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/InitVSCodeStep/TypeScriptInitVSCodeStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/detectProjectLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/detectProjectLanguage.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/initProjectForVSCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/initProjectForVSCode.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/javaSteps/addJavaInitVSCodeSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/javaSteps/addJavaInitVSCodeSteps.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/pythonSteps/PythonVenvListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/pythonSteps/PythonVenvListStep.ts -------------------------------------------------------------------------------- /src/commands/initProjectForVSCode/pythonSteps/addPythonInitVSCodeSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/initProjectForVSCode/pythonSteps/addPythonInitVSCodeSteps.ts -------------------------------------------------------------------------------- /src/commands/logstream/enableFileLogging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/logstream/enableFileLogging.ts -------------------------------------------------------------------------------- /src/commands/logstream/startStreamingLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/logstream/startStreamingLogs.ts -------------------------------------------------------------------------------- /src/commands/logstream/stopStreamingLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/logstream/stopStreamingLogs.ts -------------------------------------------------------------------------------- /src/commands/openFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/openFile.ts -------------------------------------------------------------------------------- /src/commands/openInPortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/openInPortal.ts -------------------------------------------------------------------------------- /src/commands/pickFuncProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/pickFuncProcess.ts -------------------------------------------------------------------------------- /src/commands/registerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/registerCommands.ts -------------------------------------------------------------------------------- /src/commands/remoteDebug/getRemoteDebugLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/remoteDebug/getRemoteDebugLanguage.ts -------------------------------------------------------------------------------- /src/commands/remoteDebug/startRemoteDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/remoteDebug/startRemoteDebug.ts -------------------------------------------------------------------------------- /src/commands/remoteDebugJava/DebugProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/remoteDebugJava/DebugProxy.ts -------------------------------------------------------------------------------- /src/commands/remoteDebugJava/remoteDebugJavaFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/remoteDebugJava/remoteDebugJavaFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/renameAppSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/renameAppSetting.ts -------------------------------------------------------------------------------- /src/commands/restartFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/restartFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/startFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/startFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/stopFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/stopFunctionApp.ts -------------------------------------------------------------------------------- /src/commands/swapSlot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/swapSlot.ts -------------------------------------------------------------------------------- /src/commands/updateDisabledState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/updateDisabledState.ts -------------------------------------------------------------------------------- /src/commands/viewProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/commands/viewProperties.ts -------------------------------------------------------------------------------- /src/constants-nls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/constants-nls.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/debug/BallerinaDebugProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/BallerinaDebugProvider.ts -------------------------------------------------------------------------------- /src/debug/FuncDebugProviderBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/FuncDebugProviderBase.ts -------------------------------------------------------------------------------- /src/debug/FuncTaskProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/FuncTaskProvider.ts -------------------------------------------------------------------------------- /src/debug/JavaDebugProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/JavaDebugProvider.ts -------------------------------------------------------------------------------- /src/debug/NodeDebugProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/NodeDebugProvider.ts -------------------------------------------------------------------------------- /src/debug/PowerShellDebugProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/PowerShellDebugProvider.ts -------------------------------------------------------------------------------- /src/debug/PythonDebugProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/PythonDebugProvider.ts -------------------------------------------------------------------------------- /src/debug/PythonExtension.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/PythonExtension.api.d.ts -------------------------------------------------------------------------------- /src/debug/storageProviders/validateDTSConnectionPreDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/storageProviders/validateDTSConnectionPreDebug.ts -------------------------------------------------------------------------------- /src/debug/storageProviders/validateNetheriteConnectionPreDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/storageProviders/validateNetheriteConnectionPreDebug.ts -------------------------------------------------------------------------------- /src/debug/storageProviders/validateSQLConnectionPreDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/storageProviders/validateSQLConnectionPreDebug.ts -------------------------------------------------------------------------------- /src/debug/storageProviders/validateStorageConnectionPreDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/storageProviders/validateStorageConnectionPreDebug.ts -------------------------------------------------------------------------------- /src/debug/validatePreDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/debug/validatePreDebug.ts -------------------------------------------------------------------------------- /src/downloadAzureProject/handleUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/downloadAzureProject/handleUri.ts -------------------------------------------------------------------------------- /src/downloadAzureProject/setupProjectFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/downloadAzureProject/setupProjectFolder.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/extensionVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/extensionVariables.ts -------------------------------------------------------------------------------- /src/funcConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcConfig/README.md -------------------------------------------------------------------------------- /src/funcConfig/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcConfig/function.ts -------------------------------------------------------------------------------- /src/funcConfig/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcConfig/host.ts -------------------------------------------------------------------------------- /src/funcConfig/local.settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcConfig/local.settings.ts -------------------------------------------------------------------------------- /src/funcCoreTools/funcHostTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/funcHostTask.ts -------------------------------------------------------------------------------- /src/funcCoreTools/generateLinuxErrorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/generateLinuxErrorMessages.ts -------------------------------------------------------------------------------- /src/funcCoreTools/getBrewPackageName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/getBrewPackageName.ts -------------------------------------------------------------------------------- /src/funcCoreTools/getFuncCliPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/getFuncCliPath.ts -------------------------------------------------------------------------------- /src/funcCoreTools/getFuncPackageManagers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/getFuncPackageManagers.ts -------------------------------------------------------------------------------- /src/funcCoreTools/getLocalFuncCoreToolsVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/getLocalFuncCoreToolsVersion.ts -------------------------------------------------------------------------------- /src/funcCoreTools/getNpmDistTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/getNpmDistTag.ts -------------------------------------------------------------------------------- /src/funcCoreTools/hasMinFuncCliVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/hasMinFuncCliVersion.ts -------------------------------------------------------------------------------- /src/funcCoreTools/installFuncCoreTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/installFuncCoreTools.ts -------------------------------------------------------------------------------- /src/funcCoreTools/installOrUpdateFuncCoreTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/installOrUpdateFuncCoreTools.ts -------------------------------------------------------------------------------- /src/funcCoreTools/tryGetLocalFuncVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/tryGetLocalFuncVersion.ts -------------------------------------------------------------------------------- /src/funcCoreTools/uninstallFuncCoreTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/uninstallFuncCoreTools.ts -------------------------------------------------------------------------------- /src/funcCoreTools/updateFuncCoreTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/updateFuncCoreTools.ts -------------------------------------------------------------------------------- /src/funcCoreTools/validateFuncCoreToolsInstalled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/validateFuncCoreToolsInstalled.ts -------------------------------------------------------------------------------- /src/funcCoreTools/validateFuncCoreToolsIsLatest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/funcCoreTools/validateFuncCoreToolsIsLatest.ts -------------------------------------------------------------------------------- /src/getExtensionApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/getExtensionApi.ts -------------------------------------------------------------------------------- /src/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/localize.ts -------------------------------------------------------------------------------- /src/templates/CentralTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/CentralTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/FunctionV2Template.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/IBindingTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/IBindingTemplate.ts -------------------------------------------------------------------------------- /src/templates/IFunctionTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/IFunctionTemplate.ts -------------------------------------------------------------------------------- /src/templates/ITemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/ITemplates.ts -------------------------------------------------------------------------------- /src/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/README.md -------------------------------------------------------------------------------- /src/templates/TemplateProviderBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/TemplateProviderBase.ts -------------------------------------------------------------------------------- /src/templates/ballerina/BallerinaTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/ballerina/BallerinaTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/ballerina/getBallerinaVerifiedTemplateIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/ballerina/getBallerinaVerifiedTemplateIds.ts -------------------------------------------------------------------------------- /src/templates/dotnet/DotnetTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/dotnet/DotnetTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/dotnet/executeDotnetTemplateCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/dotnet/executeDotnetTemplateCommand.ts -------------------------------------------------------------------------------- /src/templates/dotnet/getDotnetVerifiedTemplateIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/dotnet/getDotnetVerifiedTemplateIds.ts -------------------------------------------------------------------------------- /src/templates/dotnet/parseDotnetTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/dotnet/parseDotnetTemplates.ts -------------------------------------------------------------------------------- /src/templates/java/JavaTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/java/JavaTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/java/getJavaVerifiedTemplateIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/java/getJavaVerifiedTemplateIds.ts -------------------------------------------------------------------------------- /src/templates/script/NodeV4Provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/NodeV4Provider.ts -------------------------------------------------------------------------------- /src/templates/script/PysteinTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/PysteinTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/script/ScriptBundleTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/ScriptBundleTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/script/ScriptTemplateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/ScriptTemplateProvider.ts -------------------------------------------------------------------------------- /src/templates/script/getScriptResourcesLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/getScriptResourcesLanguage.ts -------------------------------------------------------------------------------- /src/templates/script/getScriptVerifiedTemplateIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/getScriptVerifiedTemplateIds.ts -------------------------------------------------------------------------------- /src/templates/script/parseScriptTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/parseScriptTemplates.ts -------------------------------------------------------------------------------- /src/templates/script/parseScriptTemplatesV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/templates/script/parseScriptTemplatesV2.ts -------------------------------------------------------------------------------- /src/tree/AzureAccountTreeItemWithProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/AzureAccountTreeItemWithProjects.ts -------------------------------------------------------------------------------- /src/tree/FunctionBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/FunctionBase.ts -------------------------------------------------------------------------------- /src/tree/FunctionTreeItemBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/FunctionTreeItemBase.ts -------------------------------------------------------------------------------- /src/tree/FunctionsTreeItemBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/FunctionsTreeItemBase.ts -------------------------------------------------------------------------------- /src/tree/IProjectTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/IProjectTreeItem.ts -------------------------------------------------------------------------------- /src/tree/ResolvedFunctionAppBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/ResolvedFunctionAppBase.ts -------------------------------------------------------------------------------- /src/tree/ResolvedFunctionAppResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/ResolvedFunctionAppResource.ts -------------------------------------------------------------------------------- /src/tree/SlotContainerTreeItemBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/SlotContainerTreeItemBase.ts -------------------------------------------------------------------------------- /src/tree/SlotTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/SlotTreeItem.ts -------------------------------------------------------------------------------- /src/tree/SlotsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/SlotsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/SubscriptionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/SubscriptionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/AppSettingsClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/AppSettingsClient.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ContainerFunctionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ContainerFunctionItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ContainerFunctionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ContainerFunctionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ContainerFunctionsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ContainerFunctionsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ContainerTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ContainerTreeItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ImageTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ImageTreeItem.ts -------------------------------------------------------------------------------- /src/tree/containerizedFunctionApp/ResolvedContainerizedFunctionAppResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/containerizedFunctionApp/ResolvedContainerizedFunctionAppResource.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/ContainerClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/ContainerClient.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskHubResourceModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskHubResourceModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerClient.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerDashboardModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerDashboardModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerDataBranchProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerDataBranchProvider.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerEmulatorClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerEmulatorClient.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerEmulatorsWorkspaceResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerEmulatorsWorkspaceResource.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerEndpointModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerEndpointModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerResourceModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerResourceModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerWorkspaceResourceModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerWorkspaceResourceModel.ts -------------------------------------------------------------------------------- /src/tree/durableTaskScheduler/DurableTaskSchedulerWorkspaceResourceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/durableTaskScheduler/DurableTaskSchedulerWorkspaceResourceProvider.ts -------------------------------------------------------------------------------- /src/tree/localProject/InitLocalProjectTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/InitLocalProjectTreeItem.ts -------------------------------------------------------------------------------- /src/tree/localProject/InvalidLocalProjectTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/InvalidLocalProjectTreeItem.ts -------------------------------------------------------------------------------- /src/tree/localProject/LocalFunctionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/LocalFunctionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/localProject/LocalFunctionsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/LocalFunctionsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/localProject/LocalProjectTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/LocalProjectTreeItem.ts -------------------------------------------------------------------------------- /src/tree/localProject/LocalProjectTreeItemBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/LocalProjectTreeItemBase.ts -------------------------------------------------------------------------------- /src/tree/localProject/createRefreshFileWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/localProject/createRefreshFileWatcher.ts -------------------------------------------------------------------------------- /src/tree/projectContextValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/projectContextValues.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/ManagedIdentityTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/ManagedIdentityTreeItem.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/RemoteFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/RemoteFunction.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/RemoteFunctionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/RemoteFunctionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/RemoteFunctionsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/RemoteFunctionsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/SystemIdentityTreeItemBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/SystemIdentityTreeItemBase.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/UserAssignedIdentitiesTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/UserAssignedIdentitiesTreeItem.ts -------------------------------------------------------------------------------- /src/tree/remoteProject/UserAssignedIdentityTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/tree/remoteProject/UserAssignedIdentityTreeItem.ts -------------------------------------------------------------------------------- /src/utils/AzureActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/AzureActivity.ts -------------------------------------------------------------------------------- /src/utils/activityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/activityUtils.ts -------------------------------------------------------------------------------- /src/utils/azure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/azure.ts -------------------------------------------------------------------------------- /src/utils/azureClients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/azureClients.ts -------------------------------------------------------------------------------- /src/utils/ballerinaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/ballerinaUtils.ts -------------------------------------------------------------------------------- /src/utils/bundleFeedUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/bundleFeedUtils.ts -------------------------------------------------------------------------------- /src/utils/cancellation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/cancellation.ts -------------------------------------------------------------------------------- /src/utils/cliFeedUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/cliFeedUtils.ts -------------------------------------------------------------------------------- /src/utils/cpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/cpUtils.ts -------------------------------------------------------------------------------- /src/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/delay.ts -------------------------------------------------------------------------------- /src/utils/dotnetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/dotnetUtils.ts -------------------------------------------------------------------------------- /src/utils/durableUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/durableUtils.ts -------------------------------------------------------------------------------- /src/utils/envUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/envUtils.ts -------------------------------------------------------------------------------- /src/utils/feedUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/feedUtils.ts -------------------------------------------------------------------------------- /src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/fs.ts -------------------------------------------------------------------------------- /src/utils/getCoreNodeModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/getCoreNodeModule.ts -------------------------------------------------------------------------------- /src/utils/gitUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/gitUtils.ts -------------------------------------------------------------------------------- /src/utils/gradleUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/gradleUtils.ts -------------------------------------------------------------------------------- /src/utils/javaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/javaUtils.ts -------------------------------------------------------------------------------- /src/utils/managedIdentityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/managedIdentityUtils.ts -------------------------------------------------------------------------------- /src/utils/mavenUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/mavenUtils.ts -------------------------------------------------------------------------------- /src/utils/mcpUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/mcpUtils.ts -------------------------------------------------------------------------------- /src/utils/nodeJsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/nodeJsUtils.ts -------------------------------------------------------------------------------- /src/utils/nonNull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/nonNull.ts -------------------------------------------------------------------------------- /src/utils/nugetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/nugetUtils.ts -------------------------------------------------------------------------------- /src/utils/openUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/openUrl.ts -------------------------------------------------------------------------------- /src/utils/parseJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/parseJson.ts -------------------------------------------------------------------------------- /src/utils/pickAppResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/pickAppResource.ts -------------------------------------------------------------------------------- /src/utils/pickFunctionApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/pickFunctionApp.ts -------------------------------------------------------------------------------- /src/utils/programmingModelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/programmingModelUtils.ts -------------------------------------------------------------------------------- /src/utils/pythonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/pythonUtils.ts -------------------------------------------------------------------------------- /src/utils/requestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/requestUtils.ts -------------------------------------------------------------------------------- /src/utils/taskUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/taskUtils.ts -------------------------------------------------------------------------------- /src/utils/telemetryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/telemetryUtils.ts -------------------------------------------------------------------------------- /src/utils/templateVersionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/templateVersionUtils.ts -------------------------------------------------------------------------------- /src/utils/textUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/textUtils.ts -------------------------------------------------------------------------------- /src/utils/treeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/treeUtils.ts -------------------------------------------------------------------------------- /src/utils/validateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/validateUtils.ts -------------------------------------------------------------------------------- /src/utils/venvUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/venvUtils.ts -------------------------------------------------------------------------------- /src/utils/verifyExtensionBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/verifyExtensionBundle.ts -------------------------------------------------------------------------------- /src/utils/windowsProcessTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/windowsProcessTree.ts -------------------------------------------------------------------------------- /src/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/utils/workspace.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/README.md -------------------------------------------------------------------------------- /src/vsCodeConfig/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/extensions.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/launch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/launch.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/promptToReinitializeProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/promptToReinitializeProject.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/settings.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/tasks.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/verifyInitForVSCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/verifyInitForVSCode.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/verifyPythonVenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/verifyPythonVenv.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/verifyTargetFramework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/verifyTargetFramework.ts -------------------------------------------------------------------------------- /src/vsCodeConfig/verifyVSCodeConfigOnActivate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vsCodeConfig/verifyVSCodeConfigOnActivate.ts -------------------------------------------------------------------------------- /src/vscode-azurecontainerapps.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vscode-azurecontainerapps.api.d.ts -------------------------------------------------------------------------------- /src/vscode-azurefunctions.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/vscode-azurefunctions.api.d.ts -------------------------------------------------------------------------------- /src/workspace/LocalFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/workspace/LocalFunction.ts -------------------------------------------------------------------------------- /src/workspace/LocalProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/workspace/LocalProject.ts -------------------------------------------------------------------------------- /src/workspace/listLocalFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/workspace/listLocalFunctions.ts -------------------------------------------------------------------------------- /src/workspace/listLocalProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/src/workspace/listLocalProjects.ts -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/ParsedFunctionJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/ParsedFunctionJson.test.ts -------------------------------------------------------------------------------- /test/addParallelSuite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/addParallelSuite.ts -------------------------------------------------------------------------------- /test/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/api.test.ts -------------------------------------------------------------------------------- /test/assertThrowsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/assertThrowsAsync.ts -------------------------------------------------------------------------------- /test/convertToValidPackageName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/convertToValidPackageName.test.ts -------------------------------------------------------------------------------- /test/createFunction/FunctionTesterBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/createFunction/FunctionTesterBase.ts -------------------------------------------------------------------------------- /test/createFunction/createFunction.CSharp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/createFunction/createFunction.CSharp.test.ts -------------------------------------------------------------------------------- /test/createFunction/createFunction.JavaScript.v1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/createFunction/createFunction.JavaScript.v1.test.ts -------------------------------------------------------------------------------- /test/createFunction/createFunction.Script.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/createFunction/createFunction.Script.v2.test.ts -------------------------------------------------------------------------------- /test/envUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/envUtils.test.ts -------------------------------------------------------------------------------- /test/fsUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/fsUtils.test.ts -------------------------------------------------------------------------------- /test/getScriptResourcesLanguage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/getScriptResourcesLanguage.test.ts -------------------------------------------------------------------------------- /test/global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/global.test.ts -------------------------------------------------------------------------------- /test/hasMinFuncCliVersion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/hasMinFuncCliVersion.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/nightly/createProjectAndDeploy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/nightly/createProjectAndDeploy.test.ts -------------------------------------------------------------------------------- /test/nightly/functionAppOperations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/nightly/functionAppOperations.test.ts -------------------------------------------------------------------------------- /test/nightly/getRotatingValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/nightly/getRotatingValue.ts -------------------------------------------------------------------------------- /test/nightly/global.nightly.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/nightly/global.nightly.test.ts -------------------------------------------------------------------------------- /test/nugetUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/nugetUtils.test.ts -------------------------------------------------------------------------------- /test/parseJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/parseJson.test.ts -------------------------------------------------------------------------------- /test/project/createAndValidateProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/project/createAndValidateProject.ts -------------------------------------------------------------------------------- /test/project/createNewProject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/project/createNewProject.test.ts -------------------------------------------------------------------------------- /test/project/createNewPythonProject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/project/createNewPythonProject.test.ts -------------------------------------------------------------------------------- /test/project/initProjectForVSCode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/project/initProjectForVSCode.test.ts -------------------------------------------------------------------------------- /test/project/validateProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/project/validateProject.ts -------------------------------------------------------------------------------- /test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/runTest.ts -------------------------------------------------------------------------------- /test/runWithSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/runWithSetting.ts -------------------------------------------------------------------------------- /test/templateCount.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/templateCount.test.ts -------------------------------------------------------------------------------- /test/test.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/test.code-workspace -------------------------------------------------------------------------------- /test/tryParseFuncVersion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/tryParseFuncVersion.test.ts -------------------------------------------------------------------------------- /test/updateBackupTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/updateBackupTemplates.ts -------------------------------------------------------------------------------- /test/utils/javaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/utils/javaUtils.ts -------------------------------------------------------------------------------- /test/validateCSharpNamespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/validateCSharpNamespace.test.ts -------------------------------------------------------------------------------- /test/venvUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/venvUtils.test.ts -------------------------------------------------------------------------------- /test/verifyVersionAndLanguage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/test/verifyVersionAndLanguage.test.ts -------------------------------------------------------------------------------- /tools/JsonCli/.azure-pipelines/1esmain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.azure-pipelines/1esmain.yml -------------------------------------------------------------------------------- /tools/JsonCli/.azure-pipelines/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.azure-pipelines/main.yml -------------------------------------------------------------------------------- /tools/JsonCli/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.vscode/extensions.json -------------------------------------------------------------------------------- /tools/JsonCli/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.vscode/launch.json -------------------------------------------------------------------------------- /tools/JsonCli/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.vscode/settings.json -------------------------------------------------------------------------------- /tools/JsonCli/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/.vscode/tasks.json -------------------------------------------------------------------------------- /tools/JsonCli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/README.md -------------------------------------------------------------------------------- /tools/JsonCli/resources/FinalPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/resources/FinalPublicKey.snk -------------------------------------------------------------------------------- /tools/JsonCli/src/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/CommandLineParser.cs -------------------------------------------------------------------------------- /tools/JsonCli/src/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Installer.cs -------------------------------------------------------------------------------- /tools/JsonCli/src/Microsoft.TemplateEngine.JsonCli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Microsoft.TemplateEngine.JsonCli.csproj -------------------------------------------------------------------------------- /tools/JsonCli/src/Models/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Models/Models.cs -------------------------------------------------------------------------------- /tools/JsonCli/src/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Package.cs -------------------------------------------------------------------------------- /tools/JsonCli/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Program.cs -------------------------------------------------------------------------------- /tools/JsonCli/src/Signing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/Signing.csproj -------------------------------------------------------------------------------- /tools/JsonCli/src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/nuget.config -------------------------------------------------------------------------------- /tools/JsonCli/src/src.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tools/JsonCli/src/src.sln -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vscode.proposed.authLearnMore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/vscode.proposed.authLearnMore.d.ts -------------------------------------------------------------------------------- /vscode.proposed.authenticationChallenges.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/vscode.proposed.authenticationChallenges.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurefunctions/HEAD/webpack.config.js --------------------------------------------------------------------------------