├── .circleci └── config.yml ├── .gitignore ├── .vsts ├── sample │ ├── config-ci-release.yml │ ├── config-ci-webdeploy.yml │ └── config-ci_AzureAppDeploy.yml └── v1_attribute │ ├── config-ci-dev.yml │ └── config-ci-release.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Terraform ├── .gitignore ├── README.md ├── bashrc_cloudshell_private ├── bashrc_cloudshell_public ├── bashrc_local_azlogin ├── bashrc_serviceprincipal ├── v1_attribute │ ├── datas.tf │ ├── eventgrid.tf │ ├── functionapp.tf │ ├── keyvault.tf │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── remote_state.tf │ ├── terraform.tf │ └── variables.tf └── v2 │ ├── datas.tf │ ├── eventgrid.tf │ ├── functionapp.tf │ ├── keyvault.tf │ ├── locals.tf │ ├── main.tf │ ├── output.tf │ ├── remote_state.tf │ ├── storage_blob.tf │ ├── storage_table.tf │ ├── terraform.tf │ └── variables.tf ├── images ├── AzureFunctionsRuntimeVersion.png ├── AzureFunctionsRuntimeVersionUpgrade.png ├── AzureFunctionsTimeZone.png ├── AzureWebJobsStorageLocalSettings.png ├── CsxDeployment.png ├── DynamicServicePlan.png ├── DynamicServicePlanMemory.png ├── HttpRequestMessageExtensions.png ├── KeyVaultAccessPolicy.png ├── LoadCsx.png ├── LocalDebugWithPostMan.png ├── ManagedServiceIdentity.png ├── MemoryAllocation.png ├── PlatformSetting.png ├── PrecompileDeployToTemp.png ├── PrecompileFunction.png ├── PrecompileOutOfVolume.png ├── PrecompileOutofVolumeKudo.png ├── PrecompileTrigger.png ├── PrecompileWebAppProjectSetting.png ├── PrecompiledDll.png ├── PrecompiledDllKillW3wp.png ├── PrecompiledDllRestartAppService.png ├── ProjectReference.png ├── SecretValue.png ├── StorageAccountConnectionStrings.png ├── TraceWriterForPrecompiled.png ├── azure-functions-core-tools.png └── localsettings.json.png ├── input_sample ├── AppSettingsWebhookCSharp.json ├── CSharpCompilerSlackOuthookCSharp.json ├── CSharpCompilerWebhookCSharp.json ├── GithubWebhookCSharp.json ├── VstsWebhookBuildCSharp.json ├── VstsWebhookRelease.json ├── WebhookCSharpSendToChatwork.json └── WebhookCSharpSendToSlack.json ├── v1 ├── .deployment ├── Deploy │ └── MSBuild │ │ ├── MSBuild.csproj │ │ └── Program.cs ├── README.md ├── deploy.cmd └── src │ ├── AppSettingsWebhookCSharp │ ├── AppSettingsWebhookCSharp.csproj │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── AzureFunctionsIntroduction.sln │ ├── CSharpCompilerSlackOuthookCSharp │ ├── CSharpCompilerSlackOuthookCSharp.csproj │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── CSharpCompilerWebhookCSharp │ ├── CSharpCompilerWebhookCSharp.csproj │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── CSharpScripting │ ├── CSharpScripting.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RoslynCompiler.cs │ ├── app.config │ └── packages.config │ ├── DotNetFrameworkVersionResponseCSharp │ ├── DotNetFrameworkVersionResponseCSharp.csproj │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── GenericWebhookCSharpExtensionMethod │ ├── FunctionTrigger.cs │ ├── GenericWebhookCSharpExtensionMethod.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── GithubWebhookCSharp │ ├── FunctionTrigger.cs │ ├── GithubWebhookCSharp.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── LineBotWebhookCSharp │ ├── FunctionTrigger.cs │ ├── LineBotWebhookCSharp.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RescureUrl.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── MyExtensions │ ├── EnumerableExtensions.cs │ ├── MyExtensions.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── PreCompileEnvironmentVariables │ ├── FunctionTrigger.cs │ ├── PreCompileEnvironmentVariables.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── PreCompiledFunctionSample │ ├── FunctionTrigger.cs │ ├── PreCompiledFunctionSample.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── SSLCertificateExpireCheck │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SSLCertificateExpireCheck.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── VSTSWebhookCSharp │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── VSTSWebhookCSharp.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── WebhookCSharpGithubOctokit │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebhookCSharpGithubOctokit.csproj │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ ├── WebhookCSharpSendToChatWork │ ├── FunctionTrigger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebhookCSharpSendToChatWork.csproj │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config │ └── WebhookCSharpSendToSlack │ ├── FunctionTrigger.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TestOutput.json │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebhookCSharpSendToSlack.csproj │ ├── function.json │ ├── host.json │ ├── local.settings.json │ └── packages.config ├── v1_attribute ├── .gitignore ├── README.md └── src │ ├── AzureFunctionsIntroduction.sln │ ├── AzureFunctionsIntroduction │ ├── AppSettingsWebhookCSharp.cs │ ├── AzureFunctionsIntroduction.csproj │ ├── CSharpCompilerSlackOuthookCSharp.cs │ ├── CSharpCompilerWebhookCSharp.cs │ ├── EventGridWebhookCSharp.cs │ ├── Extensions │ │ └── EnumerableExtensions.cs │ ├── Features │ │ ├── Github │ │ │ └── GithubMergedBranchSweeper.cs │ │ ├── Notify │ │ │ ├── INotify.cs │ │ │ ├── NotifySlack.cs │ │ │ ├── NotifyTeams.cs │ │ │ └── SerializationFormat │ │ │ │ └── TeamsMessage.cs │ │ └── Roslyn │ │ │ └── RoslynCompiler.cs │ ├── GenericWebhookCSharpExtensionMethod.cs │ ├── GithubBranchDetailTigger.cs │ ├── GithubMergedBranchSweepTimer.cs │ ├── GithubMergedBranchSweepTrigger.cs │ ├── GithubWebhookCSharp.cs │ ├── KeyVaultWebhookCSharp.cs │ ├── LineBotWebhookCSharp.cs │ ├── SSLCertificateExpireCheck.cs │ ├── StaticHelpers │ │ ├── ConfigurationManagerHelper.cs │ │ └── EnvironmentHelper.cs │ ├── VSTSWebhookCSharp.cs │ ├── WebhookCSharpSendToChatWork.cs │ ├── WebhookCSharpSendToSlack.cs │ ├── WebhookCSharpSendToTeams.cs │ └── host.json │ └── Dockerfile ├── v1_csx ├── .deployment ├── .gitignore ├── AppSettingsWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ └── run.csx ├── CSharpCompilerSlackOuthookCSharp │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ └── run.csx ├── CSharpCompilerWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ └── run.csx ├── CSharpScripting.csx ├── DotNetFrameworkVersionResponseCSharp │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── EnumerableExtensions.csx ├── ExternalCsxWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ ├── run.csx │ └── test.csx ├── GenericWebhookCSharpExtensionMethod │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── GithubWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── LineBotWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── MyExtensions.sln ├── MyExtensions │ ├── EnumerableExtensions.cs │ ├── MyExtensions.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── NugetSample.csx ├── README.md ├── RescureUrl.csx ├── SSLCertificateExpireCheck │ ├── function.json │ └── run.csx ├── VSTSWebhookCSharp │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── WebhookCSharpGithubOctokit │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ └── run.csx ├── WebhookCSharpSendToChatWork │ ├── TestOutput.json │ ├── function.json │ ├── project.json │ └── run.csx ├── WebhookCSharpSendToSlack │ ├── TestOutput.json │ ├── function.json │ └── run.csx ├── deploy.cmd ├── global.json └── images │ ├── AzureFunctionsRuntimeVersion.png │ ├── AzureFunctionsRuntimeVersionUpgrade.png │ ├── AzureFunctionsTimeZone.png │ ├── DynamicServicePlan.png │ ├── DynamicServicePlanMemory.png │ ├── HttpRequestMessageExtensions.png │ ├── LoadCsx.png │ ├── MemoryAllocation.png │ ├── PlatformSetting.png │ ├── PrecompiledDll.png │ ├── PrecompiledDllKillW3wp.png │ ├── PrecompiledDllRestartAppService.png │ ├── SecretValue.png │ └── TraceWriterForPrecompiled.png └── v2 ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md └── src ├── AzureFunctionsIntroduction.sln └── AzureFunctionsIntroduction ├── .gitignore ├── AppSettings.cs ├── AppSettingsWebhookCSharp.cs ├── AzureFunctionsIntroduction.csproj ├── Domains └── Entities │ └── AssetEntity.cs ├── Extensions ├── HttpRequestExtensions.cs └── HttpRequestMessageExtensions.cs ├── Features ├── RoslynComplier.cs └── SasTokenRequest.cs ├── KeyVaultWebhookCSharp.cs ├── RoslynCompilerServiceCSharp.cs ├── SasUrlRequestWebhookCSharp.cs ├── StaticHelpers ├── CloudStoreageAccountHelper.cs ├── EnvironmentHelper.cs └── KeyVaultHelper.cs ├── StorageTableWebhook.cs └── host.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsts/sample/config-ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.vsts/sample/config-ci-release.yml -------------------------------------------------------------------------------- /.vsts/sample/config-ci-webdeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.vsts/sample/config-ci-webdeploy.yml -------------------------------------------------------------------------------- /.vsts/sample/config-ci_AzureAppDeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.vsts/sample/config-ci_AzureAppDeploy.yml -------------------------------------------------------------------------------- /.vsts/v1_attribute/config-ci-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.vsts/v1_attribute/config-ci-dev.yml -------------------------------------------------------------------------------- /.vsts/v1_attribute/config-ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/.vsts/v1_attribute/config-ci-release.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/README.md -------------------------------------------------------------------------------- /Terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/.gitignore -------------------------------------------------------------------------------- /Terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/README.md -------------------------------------------------------------------------------- /Terraform/bashrc_cloudshell_private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/bashrc_cloudshell_private -------------------------------------------------------------------------------- /Terraform/bashrc_cloudshell_public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/bashrc_cloudshell_public -------------------------------------------------------------------------------- /Terraform/bashrc_local_azlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/bashrc_local_azlogin -------------------------------------------------------------------------------- /Terraform/bashrc_serviceprincipal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/bashrc_serviceprincipal -------------------------------------------------------------------------------- /Terraform/v1_attribute/datas.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/datas.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/eventgrid.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/eventgrid.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/functionapp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/functionapp.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/keyvault.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/locals.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/main.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/output.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/remote_state.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/terraform.tf -------------------------------------------------------------------------------- /Terraform/v1_attribute/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v1_attribute/variables.tf -------------------------------------------------------------------------------- /Terraform/v2/datas.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/datas.tf -------------------------------------------------------------------------------- /Terraform/v2/eventgrid.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/eventgrid.tf -------------------------------------------------------------------------------- /Terraform/v2/functionapp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/functionapp.tf -------------------------------------------------------------------------------- /Terraform/v2/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/keyvault.tf -------------------------------------------------------------------------------- /Terraform/v2/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/locals.tf -------------------------------------------------------------------------------- /Terraform/v2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/main.tf -------------------------------------------------------------------------------- /Terraform/v2/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/output.tf -------------------------------------------------------------------------------- /Terraform/v2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/remote_state.tf -------------------------------------------------------------------------------- /Terraform/v2/storage_blob.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/storage_blob.tf -------------------------------------------------------------------------------- /Terraform/v2/storage_table.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/storage_table.tf -------------------------------------------------------------------------------- /Terraform/v2/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/terraform.tf -------------------------------------------------------------------------------- /Terraform/v2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/Terraform/v2/variables.tf -------------------------------------------------------------------------------- /images/AzureFunctionsRuntimeVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/AzureFunctionsRuntimeVersion.png -------------------------------------------------------------------------------- /images/AzureFunctionsRuntimeVersionUpgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/AzureFunctionsRuntimeVersionUpgrade.png -------------------------------------------------------------------------------- /images/AzureFunctionsTimeZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/AzureFunctionsTimeZone.png -------------------------------------------------------------------------------- /images/AzureWebJobsStorageLocalSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/AzureWebJobsStorageLocalSettings.png -------------------------------------------------------------------------------- /images/CsxDeployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/CsxDeployment.png -------------------------------------------------------------------------------- /images/DynamicServicePlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/DynamicServicePlan.png -------------------------------------------------------------------------------- /images/DynamicServicePlanMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/DynamicServicePlanMemory.png -------------------------------------------------------------------------------- /images/HttpRequestMessageExtensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/HttpRequestMessageExtensions.png -------------------------------------------------------------------------------- /images/KeyVaultAccessPolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/KeyVaultAccessPolicy.png -------------------------------------------------------------------------------- /images/LoadCsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/LoadCsx.png -------------------------------------------------------------------------------- /images/LocalDebugWithPostMan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/LocalDebugWithPostMan.png -------------------------------------------------------------------------------- /images/ManagedServiceIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/ManagedServiceIdentity.png -------------------------------------------------------------------------------- /images/MemoryAllocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/MemoryAllocation.png -------------------------------------------------------------------------------- /images/PlatformSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PlatformSetting.png -------------------------------------------------------------------------------- /images/PrecompileDeployToTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileDeployToTemp.png -------------------------------------------------------------------------------- /images/PrecompileFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileFunction.png -------------------------------------------------------------------------------- /images/PrecompileOutOfVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileOutOfVolume.png -------------------------------------------------------------------------------- /images/PrecompileOutofVolumeKudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileOutofVolumeKudo.png -------------------------------------------------------------------------------- /images/PrecompileTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileTrigger.png -------------------------------------------------------------------------------- /images/PrecompileWebAppProjectSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompileWebAppProjectSetting.png -------------------------------------------------------------------------------- /images/PrecompiledDll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompiledDll.png -------------------------------------------------------------------------------- /images/PrecompiledDllKillW3wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompiledDllKillW3wp.png -------------------------------------------------------------------------------- /images/PrecompiledDllRestartAppService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/PrecompiledDllRestartAppService.png -------------------------------------------------------------------------------- /images/ProjectReference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/ProjectReference.png -------------------------------------------------------------------------------- /images/SecretValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/SecretValue.png -------------------------------------------------------------------------------- /images/StorageAccountConnectionStrings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/StorageAccountConnectionStrings.png -------------------------------------------------------------------------------- /images/TraceWriterForPrecompiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/TraceWriterForPrecompiled.png -------------------------------------------------------------------------------- /images/azure-functions-core-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/azure-functions-core-tools.png -------------------------------------------------------------------------------- /images/localsettings.json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/images/localsettings.json.png -------------------------------------------------------------------------------- /input_sample/AppSettingsWebhookCSharp.json: -------------------------------------------------------------------------------- 1 | { 2 | key : "Test" 3 | } -------------------------------------------------------------------------------- /input_sample/CSharpCompilerSlackOuthookCSharp.json: -------------------------------------------------------------------------------- 1 | secret -------------------------------------------------------------------------------- /input_sample/CSharpCompilerWebhookCSharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/CSharpCompilerWebhookCSharp.json -------------------------------------------------------------------------------- /input_sample/GithubWebhookCSharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/GithubWebhookCSharp.json -------------------------------------------------------------------------------- /input_sample/VstsWebhookBuildCSharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/VstsWebhookBuildCSharp.json -------------------------------------------------------------------------------- /input_sample/VstsWebhookRelease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/VstsWebhookRelease.json -------------------------------------------------------------------------------- /input_sample/WebhookCSharpSendToChatwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/WebhookCSharpSendToChatwork.json -------------------------------------------------------------------------------- /input_sample/WebhookCSharpSendToSlack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/input_sample/WebhookCSharpSendToSlack.json -------------------------------------------------------------------------------- /v1/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = deploy.cmd -------------------------------------------------------------------------------- /v1/Deploy/MSBuild/MSBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/Deploy/MSBuild/MSBuild.csproj -------------------------------------------------------------------------------- /v1/Deploy/MSBuild/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/Deploy/MSBuild/Program.cs -------------------------------------------------------------------------------- /v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/README.md -------------------------------------------------------------------------------- /v1/deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/deploy.cmd -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/AppSettingsWebhookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/AppSettingsWebhookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/AppSettingsWebhookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AppSettingsWebhookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/AzureFunctionsIntroduction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/AzureFunctionsIntroduction.sln -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/CSharpCompilerSlackOuthookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/CSharpCompilerSlackOuthookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerSlackOuthookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerSlackOuthookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/CSharpCompilerWebhookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/CSharpCompilerWebhookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/CSharpCompilerWebhookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpCompilerWebhookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/CSharpScripting/CSharpScripting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpScripting/CSharpScripting.csproj -------------------------------------------------------------------------------- /v1/src/CSharpScripting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpScripting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/CSharpScripting/RoslynCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpScripting/RoslynCompiler.cs -------------------------------------------------------------------------------- /v1/src/CSharpScripting/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpScripting/app.config -------------------------------------------------------------------------------- /v1/src/CSharpScripting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/CSharpScripting/packages.config -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/DotNetFrameworkVersionResponseCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/DotNetFrameworkVersionResponseCSharp.csproj -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/TestOutput.json: -------------------------------------------------------------------------------- 1 | { 2 | "registryValue": "394271" 3 | } -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/function.json -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/DotNetFrameworkVersionResponseCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/DotNetFrameworkVersionResponseCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/GenericWebhookCSharpExtensionMethod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/GenericWebhookCSharpExtensionMethod.csproj -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/TestOutput.json -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/Web.Release.config -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/Web.config -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/function.json -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/local.settings.json -------------------------------------------------------------------------------- /v1/src/GenericWebhookCSharpExtensionMethod/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GenericWebhookCSharpExtensionMethod/packages.config -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/GithubWebhookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/GithubWebhookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/GithubWebhookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/GithubWebhookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/LineBotWebhookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/LineBotWebhookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/RescureUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/RescureUrl.cs -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/LineBotWebhookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/LineBotWebhookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/MyExtensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/MyExtensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /v1/src/MyExtensions/MyExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/MyExtensions/MyExtensions.csproj -------------------------------------------------------------------------------- /v1/src/MyExtensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/MyExtensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/PreCompileEnvironmentVariables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/PreCompileEnvironmentVariables.csproj -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/TestOutput.json -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/Web.Release.config -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/Web.config -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/function.json -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/local.settings.json -------------------------------------------------------------------------------- /v1/src/PreCompileEnvironmentVariables/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompileEnvironmentVariables/packages.config -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/PreCompiledFunctionSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/PreCompiledFunctionSample.csproj -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/TestOutput.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HttpResponse" 3 | } -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/Web.Release.config -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/Web.config -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/function.json -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/local.settings.json -------------------------------------------------------------------------------- /v1/src/PreCompiledFunctionSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/PreCompiledFunctionSample/packages.config -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/SSLCertificateExpireCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/SSLCertificateExpireCheck.csproj -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/Web.Release.config -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/Web.config -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/function.json -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/host.json -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/local.settings.json -------------------------------------------------------------------------------- /v1/src/SSLCertificateExpireCheck/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/SSLCertificateExpireCheck/packages.config -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/VSTSWebhookCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/VSTSWebhookCSharp.csproj -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/Web.Release.config -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/Web.config -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/local.settings.json -------------------------------------------------------------------------------- /v1/src/VSTSWebhookCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/VSTSWebhookCSharp/packages.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/TestOutput.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/Web.Release.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/Web.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/WebhookCSharpGithubOctokit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/WebhookCSharpGithubOctokit.csproj -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/function.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/local.settings.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpGithubOctokit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpGithubOctokit/packages.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/TestOutput.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/Web.Release.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/Web.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/WebhookCSharpSendToChatWork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/WebhookCSharpSendToChatWork.csproj -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/function.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/local.settings.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToChatWork/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToChatWork/packages.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/FunctionTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/FunctionTrigger.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/TestOutput.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/Web.Debug.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/Web.Release.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/Web.config -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/WebhookCSharpSendToSlack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/WebhookCSharpSendToSlack.csproj -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/function.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/host.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/local.settings.json -------------------------------------------------------------------------------- /v1/src/WebhookCSharpSendToSlack/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1/src/WebhookCSharpSendToSlack/packages.config -------------------------------------------------------------------------------- /v1_attribute/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/.gitignore -------------------------------------------------------------------------------- /v1_attribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/README.md -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction.sln -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/AppSettingsWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/AppSettingsWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/AzureFunctionsIntroduction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/AzureFunctionsIntroduction.csproj -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/CSharpCompilerSlackOuthookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/CSharpCompilerSlackOuthookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/CSharpCompilerWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/CSharpCompilerWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/EventGridWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/EventGridWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Github/GithubMergedBranchSweeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Github/GithubMergedBranchSweeper.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/INotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/INotify.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/NotifySlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/NotifySlack.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/NotifyTeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/NotifyTeams.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/SerializationFormat/TeamsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Notify/SerializationFormat/TeamsMessage.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/Features/Roslyn/RoslynCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/Features/Roslyn/RoslynCompiler.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/GenericWebhookCSharpExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/GenericWebhookCSharpExtensionMethod.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/GithubBranchDetailTigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/GithubBranchDetailTigger.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/GithubMergedBranchSweepTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/GithubMergedBranchSweepTimer.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/GithubMergedBranchSweepTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/GithubMergedBranchSweepTrigger.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/GithubWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/GithubWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/KeyVaultWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/KeyVaultWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/LineBotWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/LineBotWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/SSLCertificateExpireCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/SSLCertificateExpireCheck.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/StaticHelpers/ConfigurationManagerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/StaticHelpers/ConfigurationManagerHelper.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/StaticHelpers/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/StaticHelpers/EnvironmentHelper.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/VSTSWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/VSTSWebhookCSharp.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToChatWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToChatWork.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToSlack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToSlack.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToTeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/AzureFunctionsIntroduction/WebhookCSharpSendToTeams.cs -------------------------------------------------------------------------------- /v1_attribute/src/AzureFunctionsIntroduction/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /v1_attribute/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_attribute/src/Dockerfile -------------------------------------------------------------------------------- /v1_csx/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = deploy.cmd -------------------------------------------------------------------------------- /v1_csx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/.gitignore -------------------------------------------------------------------------------- /v1_csx/AppSettingsWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/AppSettingsWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/AppSettingsWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/AppSettingsWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/AppSettingsWebhookCSharp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/AppSettingsWebhookCSharp/project.json -------------------------------------------------------------------------------- /v1_csx/AppSettingsWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/AppSettingsWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerSlackOuthookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerSlackOuthookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerSlackOuthookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerSlackOuthookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerSlackOuthookCSharp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerSlackOuthookCSharp/project.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerSlackOuthookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerSlackOuthookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerWebhookCSharp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerWebhookCSharp/project.json -------------------------------------------------------------------------------- /v1_csx/CSharpCompilerWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpCompilerWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/CSharpScripting.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/CSharpScripting.csx -------------------------------------------------------------------------------- /v1_csx/DotNetFrameworkVersionResponseCSharp/TestOutput.json: -------------------------------------------------------------------------------- 1 | { 2 | "registryValue": "394271" 3 | } -------------------------------------------------------------------------------- /v1_csx/DotNetFrameworkVersionResponseCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/DotNetFrameworkVersionResponseCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/DotNetFrameworkVersionResponseCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/DotNetFrameworkVersionResponseCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/EnumerableExtensions.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/EnumerableExtensions.csx -------------------------------------------------------------------------------- /v1_csx/ExternalCsxWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/ExternalCsxWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/ExternalCsxWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/ExternalCsxWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/ExternalCsxWebhookCSharp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/ExternalCsxWebhookCSharp/project.json -------------------------------------------------------------------------------- /v1_csx/ExternalCsxWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/ExternalCsxWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/ExternalCsxWebhookCSharp/test.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/ExternalCsxWebhookCSharp/test.csx -------------------------------------------------------------------------------- /v1_csx/GenericWebhookCSharpExtensionMethod/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GenericWebhookCSharpExtensionMethod/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/GenericWebhookCSharpExtensionMethod/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GenericWebhookCSharpExtensionMethod/function.json -------------------------------------------------------------------------------- /v1_csx/GenericWebhookCSharpExtensionMethod/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GenericWebhookCSharpExtensionMethod/run.csx -------------------------------------------------------------------------------- /v1_csx/GithubWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GithubWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/GithubWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GithubWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/GithubWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/GithubWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/LineBotWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/LineBotWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/LineBotWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/LineBotWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/LineBotWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/LineBotWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/MyExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/MyExtensions.sln -------------------------------------------------------------------------------- /v1_csx/MyExtensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/MyExtensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /v1_csx/MyExtensions/MyExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/MyExtensions/MyExtensions.csproj -------------------------------------------------------------------------------- /v1_csx/MyExtensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/MyExtensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /v1_csx/NugetSample.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/NugetSample.csx -------------------------------------------------------------------------------- /v1_csx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/README.md -------------------------------------------------------------------------------- /v1_csx/RescureUrl.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/RescureUrl.csx -------------------------------------------------------------------------------- /v1_csx/SSLCertificateExpireCheck/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/SSLCertificateExpireCheck/function.json -------------------------------------------------------------------------------- /v1_csx/SSLCertificateExpireCheck/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/SSLCertificateExpireCheck/run.csx -------------------------------------------------------------------------------- /v1_csx/VSTSWebhookCSharp/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/VSTSWebhookCSharp/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/VSTSWebhookCSharp/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/VSTSWebhookCSharp/function.json -------------------------------------------------------------------------------- /v1_csx/VSTSWebhookCSharp/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/VSTSWebhookCSharp/run.csx -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpGithubOctokit/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpGithubOctokit/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpGithubOctokit/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpGithubOctokit/function.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpGithubOctokit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpGithubOctokit/project.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpGithubOctokit/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpGithubOctokit/run.csx -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToChatWork/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToChatWork/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToChatWork/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToChatWork/function.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToChatWork/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToChatWork/project.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToChatWork/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToChatWork/run.csx -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToSlack/TestOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToSlack/TestOutput.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToSlack/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToSlack/function.json -------------------------------------------------------------------------------- /v1_csx/WebhookCSharpSendToSlack/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/WebhookCSharpSendToSlack/run.csx -------------------------------------------------------------------------------- /v1_csx/deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/deploy.cmd -------------------------------------------------------------------------------- /v1_csx/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/global.json -------------------------------------------------------------------------------- /v1_csx/images/AzureFunctionsRuntimeVersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/AzureFunctionsRuntimeVersion.png -------------------------------------------------------------------------------- /v1_csx/images/AzureFunctionsRuntimeVersionUpgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/AzureFunctionsRuntimeVersionUpgrade.png -------------------------------------------------------------------------------- /v1_csx/images/AzureFunctionsTimeZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/AzureFunctionsTimeZone.png -------------------------------------------------------------------------------- /v1_csx/images/DynamicServicePlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/DynamicServicePlan.png -------------------------------------------------------------------------------- /v1_csx/images/DynamicServicePlanMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/DynamicServicePlanMemory.png -------------------------------------------------------------------------------- /v1_csx/images/HttpRequestMessageExtensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/HttpRequestMessageExtensions.png -------------------------------------------------------------------------------- /v1_csx/images/LoadCsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/LoadCsx.png -------------------------------------------------------------------------------- /v1_csx/images/MemoryAllocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/MemoryAllocation.png -------------------------------------------------------------------------------- /v1_csx/images/PlatformSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/PlatformSetting.png -------------------------------------------------------------------------------- /v1_csx/images/PrecompiledDll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/PrecompiledDll.png -------------------------------------------------------------------------------- /v1_csx/images/PrecompiledDllKillW3wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/PrecompiledDllKillW3wp.png -------------------------------------------------------------------------------- /v1_csx/images/PrecompiledDllRestartAppService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/PrecompiledDllRestartAppService.png -------------------------------------------------------------------------------- /v1_csx/images/SecretValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/SecretValue.png -------------------------------------------------------------------------------- /v1_csx/images/TraceWriterForPrecompiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v1_csx/images/TraceWriterForPrecompiled.png -------------------------------------------------------------------------------- /v2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/.dockerignore -------------------------------------------------------------------------------- /v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/.gitignore -------------------------------------------------------------------------------- /v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/Dockerfile -------------------------------------------------------------------------------- /v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/README.md -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction.sln -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/.gitignore -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/AppSettings.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/AppSettingsWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/AppSettingsWebhookCSharp.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/AzureFunctionsIntroduction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/AzureFunctionsIntroduction.csproj -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/Domains/Entities/AssetEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/Domains/Entities/AssetEntity.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/Extensions/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/Extensions/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/Features/RoslynComplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/Features/RoslynComplier.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/Features/SasTokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/Features/SasTokenRequest.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/KeyVaultWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/KeyVaultWebhookCSharp.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/RoslynCompilerServiceCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/RoslynCompilerServiceCSharp.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/SasUrlRequestWebhookCSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/SasUrlRequestWebhookCSharp.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/StaticHelpers/CloudStoreageAccountHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/StaticHelpers/CloudStoreageAccountHelper.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/StaticHelpers/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/StaticHelpers/EnvironmentHelper.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/StaticHelpers/KeyVaultHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/StaticHelpers/KeyVaultHelper.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/StorageTableWebhook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitarrapc/AzureFunctionsIntroduction/HEAD/v2/src/AzureFunctionsIntroduction/StorageTableWebhook.cs -------------------------------------------------------------------------------- /v2/src/AzureFunctionsIntroduction/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } --------------------------------------------------------------------------------