├── Chapter1 └── Recipe5 │ ├── CreateProfilePictures │ ├── function.json │ └── run.csx │ ├── RegisterUser │ ├── function.json │ └── run.csx │ ├── ResizeProfilePictures │ ├── function.json │ ├── function.proj │ ├── project.assets.json │ └── run.csx │ └── host.json ├── Chapter10 ├── Recipe1 │ └── BulkDeviceRegistrations │ │ ├── function.json │ │ └── run.csx ├── Recipe2 │ ├── CreateQueueMessage │ │ ├── .vs │ │ │ └── CreateQueueMessage │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ ├── CreateQueueMessage.sln │ │ └── CreateQueueMessage │ │ │ ├── CreateQueueMessage.csproj │ │ │ ├── Program.cs │ │ │ ├── appsettings.json │ │ │ └── obj │ │ │ ├── CreateQueueMessage.csproj.nuget.cache │ │ │ ├── CreateQueueMessage.csproj.nuget.dgspec.json │ │ │ ├── CreateQueueMessage.csproj.nuget.g.props │ │ │ ├── CreateQueueMessage.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CreateQueueMessage.AssemblyInfo.cs │ │ │ │ ├── CreateQueueMessage.AssemblyInfoInputs.cache │ │ │ │ ├── CreateQueueMessage.assets.cache │ │ │ │ ├── CreateQueueMessage.csproj.CopyComplete │ │ │ │ ├── CreateQueueMessage.csproj.FileListAbsolute.txt │ │ │ │ ├── CreateQueueMessage.csprojAssemblyReference.cache │ │ │ │ ├── CreateQueueMessage.dll │ │ │ │ ├── CreateQueueMessage.exe │ │ │ │ └── CreateQueueMessage.pdb │ │ │ └── project.assets.json │ ├── ProcessData │ │ ├── function.json │ │ └── run.csx │ └── extensions.txt ├── Recipe3 │ ├── HttpAlive │ │ ├── function.json │ │ └── run.csx │ ├── KeepFunctionAppWarm │ │ ├── function.json │ │ └── run.csx │ └── host.json ├── Recipe4 │ ├── ReusableMethodCaller1 │ │ ├── function.json │ │ └── run.csx │ ├── ReusableMethodCaller2 │ │ ├── function.json │ │ └── run.csx │ ├── bin │ │ └── Reusability.dll │ └── host.json ├── Recipe5 │ └── BackgroundJob │ │ ├── .vs │ │ └── BackgroundJob │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ ├── BackgroundJob.sln │ │ └── BackgroundJob │ │ ├── App.config │ │ ├── BackgroundJob.csproj │ │ ├── OrderProcessing.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── UserRegistration.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── BackgroundJob.exe │ │ │ ├── BackgroundJob.exe.config │ │ │ └── BackgroundJob.pdb │ │ └── obj │ │ └── Debug │ │ ├── BackgroundJob.csproj.FileListAbsolute.txt │ │ ├── BackgroundJob.csprojAssemblyReference.cache │ │ ├── BackgroundJob.exe │ │ ├── BackgroundJob.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── Recipe6 │ └── FeatureFlags │ ├── .vs │ └── FeatureFlags │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ ├── FeatureFlags.sln │ └── FeatureFlags │ ├── .gitignore │ ├── FeatureFlags.cs │ ├── FeatureFlags.csproj │ ├── Settings.cs │ ├── Startup.cs │ └── host.json ├── Chapter11 └── Recipe2 │ └── FunctionAppusingARMTemplate │ ├── .vs │ └── FunctionAppusingARMTemplate │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ └── .suo │ ├── FunctionAppusingARMTemplate.sln │ └── FunctionAppusingARMTemplate │ ├── Deploy-AzureResourceGroup.ps1 │ ├── Deployment.targets │ ├── FunctionAppusingARMTemplate.deployproj │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── bin │ └── Debug │ └── staging │ └── FunctionAppusingARMTemplate │ ├── Deploy-AzureResourceGroup.ps1 │ ├── README.md │ ├── azuredeploy.json │ └── azuredeploy.parameters.json ├── Chapter2 ├── Recipe1 │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ ├── ResizeProfilePictures │ │ ├── function.json │ │ ├── function.proj │ │ ├── project.assets.json │ │ └── run.csx │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json ├── Recipe2 │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ ├── ResizeProfilePictures │ │ ├── function.json │ │ ├── function.proj │ │ ├── project.assets.json │ │ └── run.csx │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json ├── Recipe3 │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json ├── Recipe4 │ ├── CreateProfilePictures │ │ ├── function.json │ │ └── run.csx │ ├── RegisterUser │ │ ├── function.json │ │ └── run.csx │ ├── ResizeProfilePictures │ │ ├── function.json │ │ ├── function.proj │ │ ├── project.assets.json │ │ └── run.csx │ ├── SendNotifications │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json └── Recipe5 │ ├── CreateProfilePictures │ ├── function.json │ └── run.csx │ ├── RegisterUser │ ├── function.json │ └── run.csx │ ├── ResizeProfilePictures │ ├── function.json │ ├── function.proj │ ├── project.assets.json │ └── run.csx │ ├── SendNotifications │ ├── function.json │ └── run.csx │ ├── host.json │ └── local.settings.json ├── Chapter3 ├── Recipe1 │ ├── LocalMaleFemalFaces │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json ├── Recipe3 │ ├── ValidateTwitterFollowerCount │ │ ├── function.json │ │ └── run.csx │ ├── host.json │ └── local.settings.json └── Recipe5 │ ├── arm_template.json │ ├── arm_template_parameters.json │ └── linkedTemplates │ ├── ArmTemplateParameters_master.json │ ├── ArmTemplate_0.json │ └── ArmTemplate_master.json ├── Chapter4 └── FunctionAppinVisualStudio │ ├── .vs │ └── FunctionAppinVisualStudio │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── v16 │ │ ├── .suo │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── TestStore │ │ └── 0 │ │ ├── 000-0000.testlog │ │ └── testlog.manifest │ ├── FunctionAppinVisualStudio.sln │ └── FunctionAppinVisualStudio │ ├── .gitignore │ ├── Dockerfile │ ├── FunctionAppinVisualStudio.csproj │ ├── FunctionAppinVisualStudio.csproj.user │ ├── HttpTriggerCSharpFromVS.cs │ ├── Properties │ └── PublishProfiles │ │ └── FunctionAppinVisualStudioV3 - Zip Deploy.pubxml │ ├── bin │ └── Debug │ │ └── netcoreapp3.0 │ │ ├── FunctionAppinVisualStudio.deps.json │ │ ├── HttpTriggerCSharpFromVS │ │ └── function.json │ │ ├── bin │ │ ├── Castle.Core.dll │ │ ├── FunctionAppinVisualStudio.dll │ │ ├── FunctionAppinVisualStudio.pdb │ │ ├── Microsoft.ApplicationInsights.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ ├── Microsoft.Azure.WebJobs.dll │ │ ├── Microsoft.Build.Framework.dll │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Moq.dll │ │ ├── NCrontab.Signed.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── SendGrid.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── extensions.json │ │ └── function.deps.json │ │ ├── host.json │ │ └── local.settings.json │ ├── host.json │ ├── local.settings.json │ └── obj │ └── Debug │ └── netcoreapp3.0 │ ├── FunctionAppinVisualStudio.AssemblyInfo.cs │ ├── FunctionAppinVisualStudio.AssemblyInfoInputs.cache │ └── FunctionAppinVisualStudio.assets.cache ├── Chapter5 └── Recipe5 │ └── FunctionAppinVisualStudio │ ├── .vs │ └── FunctionAppinVisualStudio │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── v16 │ │ ├── .suo │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── TestStore │ │ └── 0 │ │ ├── 000-0000.testlog │ │ └── testlog.manifest │ ├── FunctionAppinVisualStudio.sln │ ├── FunctionAppinVisualStudio │ ├── .gitignore │ ├── Dockerfile │ ├── FunctionAppinVisualStudio.csproj │ ├── HttpTriggerCSharpFromVS.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FunctionAppinVisualStudioV3 - Zip Deploy.pubxml │ └── host.json │ └── XUnitTestProject1 │ ├── UnitTest1.cs │ ├── XUnitTestProject1.csproj │ ├── bin │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── Castle.Core.dll │ │ │ ├── FunctionAppinVisualStudio.dll │ │ │ ├── FunctionAppinVisualStudio.pdb │ │ │ ├── Microsoft.ApplicationInsights.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ ├── Microsoft.AspNetCore.Http.dll │ │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ │ ├── Microsoft.Azure.WebJobs.dll │ │ │ ├── Microsoft.Build.Framework.dll │ │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Hosting.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.Net.Http.Headers.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── Moq.dll │ │ │ ├── NCrontab.Signed.dll │ │ │ ├── Newtonsoft.Json.Bson.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── SendGrid.dll │ │ │ ├── System.Net.Http.Formatting.dll │ │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ │ ├── XUnitTestProject1.deps.json │ │ │ ├── XUnitTestProject1.dll │ │ │ ├── XUnitTestProject1.pdb │ │ │ ├── XUnitTestProject1.runtimeconfig.dev.json │ │ │ ├── XUnitTestProject1.runtimeconfig.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── host.json │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── local.settings.json │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── xunit.abstractions.dll │ │ │ ├── xunit.assert.dll │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.execution.dotnet.dll │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── Release │ │ └── netcoreapp3.1 │ │ ├── Castle.Core.dll │ │ ├── FunctionAppinVisualStudio.dll │ │ ├── FunctionAppinVisualStudio.pdb │ │ ├── Microsoft.ApplicationInsights.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ ├── Microsoft.Azure.WebJobs.dll │ │ ├── Microsoft.Build.Framework.dll │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Moq.dll │ │ ├── NCrontab.Signed.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ ├── XUnitTestProject1.deps.json │ │ ├── XUnitTestProject1.dll │ │ ├── XUnitTestProject1.pdb │ │ ├── XUnitTestProject1.runtimeconfig.dev.json │ │ ├── XUnitTestProject1.runtimeconfig.json │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── host.json │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── local.settings.json │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ ├── XUnitTestProject1.assets.cache │ │ ├── XUnitTestProject1.csproj.CopyComplete │ │ ├── XUnitTestProject1.csproj.FileListAbsolute.txt │ │ ├── XUnitTestProject1.csprojAssemblyReference.cache │ │ ├── XUnitTestProject1.dll │ │ └── XUnitTestProject1.pdb │ ├── Release │ └── netcoreapp3.1 │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ ├── XUnitTestProject1.assets.cache │ │ ├── XUnitTestProject1.csproj.CopyComplete │ │ ├── XUnitTestProject1.csproj.FileListAbsolute.txt │ │ ├── XUnitTestProject1.csprojAssemblyReference.cache │ │ ├── XUnitTestProject1.dll │ │ └── XUnitTestProject1.pdb │ ├── XUnitTestProject1.csproj.nuget.cache │ ├── XUnitTestProject1.csproj.nuget.dgspec.json │ ├── XUnitTestProject1.csproj.nuget.g.props │ ├── XUnitTestProject1.csproj.nuget.g.targets │ └── project.assets.json ├── Chapter6 ├── Recipe4 │ └── FunctionAppinVisualStudio │ │ ├── .vs │ │ └── FunctionAppinVisualStudio │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ └── v16 │ │ │ ├── .suo │ │ │ ├── Server │ │ │ └── sqlite3 │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ └── TestStore │ │ │ └── 0 │ │ │ ├── 000-0000.testlog │ │ │ └── testlog.manifest │ │ ├── FunctionAppinVisualStudio.sln │ │ ├── FunctionAppinVisualStudio │ │ ├── .gitignore │ │ ├── BlobTriggerCSharp.cs │ │ ├── Dockerfile │ │ ├── FeedAIWithCustomDerivedMetrics.cs │ │ ├── FunctionAppinVisualStudio.csproj │ │ ├── HttpTriggerCSharpFromVS.cs │ │ ├── Properties │ │ │ └── PublishProfiles │ │ │ │ └── FunctionAppinVisualStudioV3 - Zip Deploy.pubxml │ │ └── host.json │ │ └── XUnitTestProject1 │ │ ├── UnitTest1.cs │ │ ├── XUnitTestProject1.csproj │ │ ├── bin │ │ └── Release │ │ │ └── netcoreapp3.1 │ │ │ ├── Castle.Core.dll │ │ │ ├── FunctionAppinVisualStudio.dll │ │ │ ├── FunctionAppinVisualStudio.pdb │ │ │ ├── Microsoft.ApplicationInsights.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ ├── Microsoft.AspNetCore.Http.dll │ │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ │ ├── Microsoft.Azure.WebJobs.dll │ │ │ ├── Microsoft.Build.Framework.dll │ │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Hosting.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.Net.Http.Headers.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── Moq.dll │ │ │ ├── NCrontab.Signed.dll │ │ │ ├── Newtonsoft.Json.Bson.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Net.Http.Formatting.dll │ │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ │ ├── XUnitTestProject1.deps.json │ │ │ ├── XUnitTestProject1.dll │ │ │ ├── XUnitTestProject1.pdb │ │ │ ├── XUnitTestProject1.runtimeconfig.dev.json │ │ │ ├── XUnitTestProject1.runtimeconfig.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── host.json │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── local.settings.json │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── xunit.abstractions.dll │ │ │ ├── xunit.assert.dll │ │ │ ├── xunit.core.dll │ │ │ ├── xunit.execution.dotnet.dll │ │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ │ ├── XUnitTestProject1.assets.cache │ │ │ └── XUnitTestProject1.csprojAssemblyReference.cache │ │ ├── Release │ │ └── netcoreapp3.1 │ │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ │ ├── XUnitTestProject1.assets.cache │ │ │ ├── XUnitTestProject1.csproj.CopyComplete │ │ │ ├── XUnitTestProject1.csproj.FileListAbsolute.txt │ │ │ ├── XUnitTestProject1.csprojAssemblyReference.cache │ │ │ ├── XUnitTestProject1.dll │ │ │ └── XUnitTestProject1.pdb │ │ ├── XUnitTestProject1.csproj.nuget.cache │ │ ├── XUnitTestProject1.csproj.nuget.dgspec.json │ │ ├── XUnitTestProject1.csproj.nuget.g.props │ │ ├── XUnitTestProject1.csproj.nuget.g.targets │ │ └── project.assets.json └── Recipe5 │ └── FunctionAppinVisualStudio │ ├── .vs │ └── FunctionAppinVisualStudio │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ └── v16 │ │ ├── .suo │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── TestStore │ │ └── 0 │ │ ├── 000-0000.testlog │ │ └── testlog.manifest │ ├── FunctionAppinVisualStudio.sln │ ├── FunctionAppinVisualStudio │ ├── .gitignore │ ├── ApplicationInsightsScheduledDigest.cs │ ├── BlobTriggerCSharp.cs │ ├── Dockerfile │ ├── FeedAIWithCustomDerivedMetrics.cs │ ├── FunctionAppinVisualStudio.csproj │ ├── HttpTriggerCSharpFromVS.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FunctionAppinVisualStudioV3 - Zip Deploy.pubxml │ └── host.json │ └── XUnitTestProject1 │ ├── UnitTest1.cs │ ├── XUnitTestProject1.csproj │ ├── bin │ └── Release │ │ └── netcoreapp3.1 │ │ ├── Castle.Core.dll │ │ ├── FunctionAppinVisualStudio.dll │ │ ├── FunctionAppinVisualStudio.pdb │ │ ├── Microsoft.ApplicationInsights.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.WebApiCompatShim.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Http.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Extensions.dll │ │ ├── Microsoft.Azure.WebJobs.Host.Storage.dll │ │ ├── Microsoft.Azure.WebJobs.Host.dll │ │ ├── Microsoft.Azure.WebJobs.dll │ │ ├── Microsoft.Build.Framework.dll │ │ ├── Microsoft.Build.Utilities.Core.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Moq.dll │ │ ├── NCrontab.Signed.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ ├── XUnitTestProject1.deps.json │ │ ├── XUnitTestProject1.dll │ │ ├── XUnitTestProject1.pdb │ │ ├── XUnitTestProject1.runtimeconfig.dev.json │ │ ├── XUnitTestProject1.runtimeconfig.json │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── host.json │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── local.settings.json │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ ├── XUnitTestProject1.assets.cache │ │ └── XUnitTestProject1.csprojAssemblyReference.cache │ ├── Release │ └── netcoreapp3.1 │ │ ├── XUnitTestProject1.AssemblyInfo.cs │ │ ├── XUnitTestProject1.AssemblyInfoInputs.cache │ │ ├── XUnitTestProject1.assets.cache │ │ ├── XUnitTestProject1.csproj.CopyComplete │ │ ├── XUnitTestProject1.csproj.FileListAbsolute.txt │ │ ├── XUnitTestProject1.csprojAssemblyReference.cache │ │ ├── XUnitTestProject1.dll │ │ └── XUnitTestProject1.pdb │ ├── XUnitTestProject1.csproj.nuget.cache │ ├── XUnitTestProject1.csproj.nuget.dgspec.json │ ├── XUnitTestProject1.csproj.nuget.g.props │ ├── XUnitTestProject1.csproj.nuget.g.targets │ └── project.assets.json ├── Chapter8 ├── Recipe1 │ └── CSVImport │ │ ├── .vs │ │ ├── CSVImport │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ ├── v15 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ │ └── sqlite3 │ │ │ │ │ ├── db.lock │ │ │ │ │ ├── storage.ide │ │ │ │ │ ├── storage.ide-shm │ │ │ │ │ └── storage.ide-wal │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ └── config │ │ │ └── applicationhost.config │ │ ├── CSVImport.Client │ │ ├── CSVImport.Client.csproj │ │ ├── Program.cs │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.deps.json │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ ├── CSVImport.Client.pdb │ │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ │ ├── CSVImport.Client.assets.cache │ │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ └── CSVImport.Client.pdb │ │ │ └── project.assets.json │ │ └── CSVImport.sln ├── Recipe2 │ └── CSVImport │ │ ├── .vs │ │ └── CSVImport │ │ │ ├── config │ │ │ └── applicationhost.config │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── CSVImport.Client │ │ ├── CSVImport.Client.csproj │ │ ├── Program.cs │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.deps.json │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ ├── CSVImport.Client.pdb │ │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ │ ├── CSVImport.Client.assets.cache │ │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ └── CSVImport.Client.pdb │ │ │ └── project.assets.json │ │ ├── CSVImport.DurableFunctions │ │ ├── .gitignore │ │ ├── CSVImport.DurableFunctions.csproj │ │ ├── CSVImportBlobTrigger.cs │ │ └── host.json │ │ └── CSVImport.sln ├── Recipe3 │ └── CSVImport │ │ ├── .vs │ │ └── CSVImport │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ ├── config │ │ │ └── applicationhost.config │ │ │ ├── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── CSVImport.Client │ │ ├── CSVImport.Client.csproj │ │ ├── Program.cs │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.deps.json │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ ├── CSVImport.Client.pdb │ │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ │ ├── CSVImport.Client.assets.cache │ │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ └── CSVImport.Client.pdb │ │ │ └── project.assets.json │ │ ├── CSVImport.DurableFunctions │ │ ├── .gitignore │ │ ├── CSVImport.DurableFunctions.csproj │ │ ├── CSVImportBlobTrigger.cs │ │ ├── CSVImport_Orchestrator.cs │ │ └── host.json │ │ └── CSVImport.sln ├── Recipe4 │ └── CSVImport │ │ ├── .vs │ │ └── CSVImport │ │ │ ├── config │ │ │ └── applicationhost.config │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── CSVImport.Client │ │ ├── CSVImport.Client.csproj │ │ ├── Program.cs │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.deps.json │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ ├── CSVImport.Client.pdb │ │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ │ ├── CSVImport.Client.assets.cache │ │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ └── CSVImport.Client.pdb │ │ │ └── project.assets.json │ │ ├── CSVImport.DurableFunctions │ │ ├── .gitignore │ │ ├── CSVImport.DurableFunctions.csproj │ │ ├── CSVImportBlobTrigger.cs │ │ ├── CSVImport_Orchestrator.cs │ │ ├── CSVManager.cs │ │ ├── StorageManager.cs │ │ └── host.json │ │ └── CSVImport.sln ├── Recipe5 │ └── CSVImport │ │ ├── .vs │ │ └── CSVImport │ │ │ ├── config │ │ │ └── applicationhost.config │ │ │ └── v16 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── CSVImport.Client │ │ ├── CSVImport.Client.csproj │ │ ├── Program.cs │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.deps.json │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ ├── CSVImport.Client.pdb │ │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── appsettings.json │ │ └── obj │ │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ │ ├── CSVImport.Client.assets.cache │ │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ │ ├── CSVImport.Client.dll │ │ │ │ ├── CSVImport.Client.exe │ │ │ │ └── CSVImport.Client.pdb │ │ │ └── project.assets.json │ │ ├── CSVImport.DurableFunctions │ │ ├── .gitignore │ │ ├── CSVImport.DurableFunctions.csproj │ │ ├── CSVImportBlobTrigger.cs │ │ ├── CSVImport_Orchestrator.cs │ │ ├── CSVManager.cs │ │ ├── StorageManager.cs │ │ └── host.json │ │ └── CSVImport.sln └── Recipe6 │ └── CSVImport │ ├── .vs │ └── CSVImport │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide │ ├── CSVImport.Client │ ├── CSVImport.Client.csproj │ ├── Program.cs │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── CSVImport.Client.deps.json │ │ │ ├── CSVImport.Client.dll │ │ │ ├── CSVImport.Client.exe │ │ │ ├── CSVImport.Client.pdb │ │ │ ├── CSVImport.Client.runtimeconfig.dev.json │ │ │ ├── CSVImport.Client.runtimeconfig.json │ │ │ ├── Microsoft.Azure.KeyVault.Core.dll │ │ │ ├── Microsoft.Azure.Storage.Blob.dll │ │ │ ├── Microsoft.Azure.Storage.Common.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── appsettings.json │ └── obj │ │ ├── CSVImport.Client.csproj.nuget.cache │ │ ├── CSVImport.Client.csproj.nuget.dgspec.json │ │ ├── CSVImport.Client.csproj.nuget.g.props │ │ ├── CSVImport.Client.csproj.nuget.g.targets │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── CSVImport.Client.AssemblyInfo.cs │ │ │ ├── CSVImport.Client.AssemblyInfoInputs.cache │ │ │ ├── CSVImport.Client.assets.cache │ │ │ ├── CSVImport.Client.csproj.CopyComplete │ │ │ ├── CSVImport.Client.csproj.FileListAbsolute.txt │ │ │ ├── CSVImport.Client.csprojAssemblyReference.cache │ │ │ ├── CSVImport.Client.dll │ │ │ ├── CSVImport.Client.exe │ │ │ └── CSVImport.Client.pdb │ │ └── project.assets.json │ ├── CSVImport.DurableFunctions │ ├── .gitignore │ ├── CSVImport.DurableFunctions.csproj │ ├── CSVImportBlobTrigger.cs │ ├── CSVImport_Orchestrator.cs │ ├── CSVManager.cs │ ├── StorageManager.cs │ └── host.json │ └── CSVImport.sln ├── Chapter9 └── FunctionAppwithMSI │ ├── .vs │ └── FunctionAppwithMSI │ │ ├── DesignTimeBuild │ │ └── .dtbcache │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ ├── FunctionAppwithMSI.sln │ └── FunctionAppwithMSI │ ├── .gitignore │ ├── Function1.cs │ ├── FunctionAppwithMSI.csproj │ ├── Properties │ └── PublishProfiles │ │ └── FunctionAppforCookbookwithMSI - Zip Deploy.pubxml │ └── host.json ├── LICENSE └── README.md /Chapter1/Recipe5/ResizeProfilePictures/function.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter1/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/.suo -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/.vs/CreateQueueMessage/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnectionString": "<>" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/CreateQueueMessage.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "ixqhlxTg33CEzs+6LRJr1hXfoYQ6zaMm/Is0xspQwo7V2Oz3vqez7x4g70MbYiLzQr5peJGB795ikj5dayayMw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0c221051f5d37a13f04a7d6a76ee621831520c06 2 | -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.assets.cache -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.dll -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.exe -------------------------------------------------------------------------------- /Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/CreateQueueMessage/CreateQueueMessage/obj/Debug/netcoreapp3.1/CreateQueueMessage.pdb -------------------------------------------------------------------------------- /Chapter10/Recipe2/ProcessData/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myQueueItem", 5 | "type": "queueTrigger", 6 | "direction": "in", 7 | "queueName": "myqueuemessages", 8 | "connection": "azurecookbook1afcb_STORAGE" 9 | } 10 | ], 11 | "disabled": false 12 | } -------------------------------------------------------------------------------- /Chapter10/Recipe2/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe2/extensions.txt -------------------------------------------------------------------------------- /Chapter10/Recipe3/HttpAlive/run.csx: -------------------------------------------------------------------------------- 1 | using System.Net; 2 | using Microsoft.AspNetCore.Mvc; 3 | 4 | public static async Task Run(HttpRequest req, ILogger log) 5 | { 6 | return (ActionResult)new OkObjectResult($"Hello User! Thanks for keeping me Warm"); 7 | } 8 | -------------------------------------------------------------------------------- /Chapter10/Recipe3/KeepFunctionAppWarm/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "name": "myTimer", 5 | "type": "timerTrigger", 6 | "direction": "in", 7 | "schedule": "0 */5 * * * *" 8 | } 9 | ], 10 | "disabled": false 11 | } -------------------------------------------------------------------------------- /Chapter10/Recipe3/KeepFunctionAppWarm/run.csx: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | public async static void Run(TimerInfo myTimer, ILogger log) 4 | { 5 | using (var httpClient = new HttpClient()) 6 | { 7 | var response = await httpClient.GetAsync("https://azurefunctioncookbook-men.azurewebsites.net/api/HttpALive"); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /Chapter10/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter10/Recipe4/ReusableMethodCaller1/run.csx: -------------------------------------------------------------------------------- 1 | #r "../bin/Reusability.dll" 2 | using Utilities; 3 | public static async Task Run(HttpRequest req, ILogger log) 4 | { 5 | log.LogInformation(Helper.GetReusableFunctionOutput()); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter10/Recipe4/ReusableMethodCaller2/run.csx: -------------------------------------------------------------------------------- 1 | #r "../bin/Reusability.dll" 2 | using Utilities; 3 | public static async Task Run(HttpRequest req, ILogger log) 4 | { 5 | log.LogInformation(Helper.GetReusableFunctionOutput()); 6 | } 7 | -------------------------------------------------------------------------------- /Chapter10/Recipe4/bin/Reusability.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe4/bin/Reusability.dll -------------------------------------------------------------------------------- /Chapter10/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/.suo -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/.vs/BackgroundJob/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/bin/Debug/BackgroundJob.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/bin/Debug/BackgroundJob.exe -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/bin/Debug/BackgroundJob.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/bin/Debug/BackgroundJob.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/bin/Debug/BackgroundJob.pdb -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.exe -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/BackgroundJob.pdb -------------------------------------------------------------------------------- /Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe5/BackgroundJob/BackgroundJob/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/.suo -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter10/Recipe6/FeatureFlags/.vs/FeatureFlags/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/FeatureFlags/Settings.cs: -------------------------------------------------------------------------------- 1 | namespace FeatureFlags 2 | { 3 | public class Settings 4 | { 5 | public string Greeting { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Chapter10/Recipe6/FeatureFlags/FeatureFlags/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter11/Recipe2/FunctionAppusingARMTemplate/.vs/FunctionAppusingARMTemplate/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter11/Recipe2/FunctionAppusingARMTemplate/.vs/FunctionAppusingARMTemplate/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter11/Recipe2/FunctionAppusingARMTemplate/.vs/FunctionAppusingARMTemplate/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter11/Recipe2/FunctionAppusingARMTemplate/.vs/FunctionAppusingARMTemplate/v16/.suo -------------------------------------------------------------------------------- /Chapter2/Recipe1/ResizeProfilePictures/function.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter2/Recipe1/SendNotifications/run.csx: -------------------------------------------------------------------------------- 1 | #r "SendGrid" 2 | using System; 3 | using SendGrid.Helpers.Mail; 4 | public static void Run(string myQueueItem,out SendGridMessage message, ILogger log) 5 | { 6 | log.LogInformation($"C# Queue trigger function processed: {myQueueItem}"); 7 | message = new SendGridMessage(); 8 | } 9 | -------------------------------------------------------------------------------- /Chapter2/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter2/Recipe2/ResizeProfilePictures/function.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter2/Recipe2/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter2/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter2/Recipe4/ResizeProfilePictures/function.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter2/Recipe4/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter2/Recipe5/ResizeProfilePictures/function.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter2/Recipe5/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter3/Recipe1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter3/Recipe3/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } -------------------------------------------------------------------------------- /Chapter3/Recipe3/local.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsEncrypted": false, 3 | "Values": { 4 | 5 | "FUNCTIONS_EXTENSION_VERSION": "~3" 6 | 7 | 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/.suo -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/azure-functions/dotnet:3.0 2 | COPY ./bin/Release/netcoreapp3.0 /home/site/wwwroot -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Castle.Core.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/FunctionAppinVisualStudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/FunctionAppinVisualStudio.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/FunctionAppinVisualStudio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/FunctionAppinVisualStudio.pdb -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Moq.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/NCrontab.Signed.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/SendGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/SendGrid.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/bin/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions":[ 3 | { "name": "AzureStorage", "typeName":"Microsoft.Azure.WebJobs.Extensions.Storage.AzureStorageWebJobsStartup, Microsoft.Azure.WebJobs.Extensions.Storage, Version=3.0.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"} 4 | ] 5 | } -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/bin/Debug/netcoreapp3.0/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/obj/Debug/netcoreapp3.0/FunctionAppinVisualStudio.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4035d85f4c9fc92a327d2578e43907cee377fb04 2 | -------------------------------------------------------------------------------- /Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/obj/Debug/netcoreapp3.0/FunctionAppinVisualStudio.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/obj/Debug/netcoreapp3.0/FunctionAppinVisualStudio.assets.cache -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/.suo -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/FunctionAppinVisualStudio/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/azure-functions/dotnet:3.0 2 | COPY ./bin/Release/netcoreapp3.0 /home/site/wwwroot -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/FunctionAppinVisualStudio/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/FunctionAppinVisualStudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/FunctionAppinVisualStudio.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/FunctionAppinVisualStudio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/FunctionAppinVisualStudio.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.Extensions.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Moq.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/NCrontab.Signed.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/SendGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/SendGrid.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/XUnitTestProject1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.abstractions.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.assert.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8b5bd1f6fc5fd804dd0bd3a027675b541cca84d1 2 | -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | cafe47b8068d00f6d978ba483a866f3d8d97e8de 2 | -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter5/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/XUnitTestProject1.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "k7/IvVXV0l8WwwHI98zHSloVa5mBBLxfksDsh92lJl6ch1mM9T71q4Gq9Rq5qcQW/dKD+CZaCGi8WYIcCKMsNA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/azure-functions/dotnet:3.0 2 | COPY ./bin/Release/netcoreapp3.0 /home/site/wwwroot -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/FunctionAppinVisualStudio/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8b5bd1f6fc5fd804dd0bd3a027675b541cca84d1 2 | -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | cafe47b8068d00f6d978ba483a866f3d8d97e8de 2 | -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe4/FunctionAppinVisualStudio/XUnitTestProject1/obj/XUnitTestProject1.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "XqyU0xnF2J0xy1IMEoQUzmsj5/MxXutkwvBi/0kRocNhStnrgwaTwrdkwyNnn2ZR/XrEWAxJEiEP98fVA5Sahg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/.suo -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/000-0000.testlog -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/.vs/FunctionAppinVisualStudio/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/FunctionAppinVisualStudio/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/azure-functions/dotnet:3.0 2 | COPY ./bin/Release/netcoreapp3.0 /home/site/wwwroot -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/FunctionAppinVisualStudio/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/FunctionAppinVisualStudio.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.Host.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Azure.WebJobs.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Moq.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/NCrontab.Signed.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/XUnitTestProject1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.abstractions.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.assert.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.core.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/bin/Release/netcoreapp3.1/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8b5bd1f6fc5fd804dd0bd3a027675b541cca84d1 2 | -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Debug/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | cafe47b8068d00f6d978ba483a866f3d8d97e8de 2 | -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.assets.cache -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.dll -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/Release/netcoreapp3.1/XUnitTestProject1.pdb -------------------------------------------------------------------------------- /Chapter6/Recipe5/FunctionAppinVisualStudio/XUnitTestProject1/obj/XUnitTestProject1.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "XqyU0xnF2J0xy1IMEoQUzmsj5/MxXutkwvBi/0kRocNhStnrgwaTwrdkwyNnn2ZR/XrEWAxJEiEP98fVA5Sahg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "3Tb7Jnictief1OYcV45F7r49miYERghQlbXsK+x66PnLL1r3SdRDI8raBNL9eU/61qhSlfnyjniXoXqL574zdg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe1/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "yNIzK9C4o3w3jirIXEnME57SyMf2jMNaEoLbOfZIT76PqEtSMNdkTsm4qC512zxBB6jmMpO3l+a+sbcPa425LA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe2/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe2/CSVImport/CSVImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "yNIzK9C4o3w3jirIXEnME57SyMf2jMNaEoLbOfZIT76PqEtSMNdkTsm4qC512zxBB6jmMpO3l+a+sbcPa425LA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe3/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe3/CSVImport/CSVImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "yNIzK9C4o3w3jirIXEnME57SyMf2jMNaEoLbOfZIT76PqEtSMNdkTsm4qC512zxBB6jmMpO3l+a+sbcPa425LA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe4/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe4/CSVImport/CSVImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "yNIzK9C4o3w3jirIXEnME57SyMf2jMNaEoLbOfZIT76PqEtSMNdkTsm4qC512zxBB6jmMpO3l+a+sbcPa425LA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe5/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe5/CSVImport/CSVImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/.vs/CSVImport/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/.vs/CSVImport/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/.vs/CSVImport/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\vmadmin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\vmadmin\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/CSVImport.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.KeyVault.Core.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Blob.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Azure.Storage.Common.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "StorageConnection": "DefaultEndpointsProtocol=https;AccountName=storageaccountazurebe13;AccountKey=KWnksaUmSW3Z82JdDIenEIDjACjveVBIwe023/1SqOexAg36m/+iBsXVV3TAOwNnRoJ+xZBQ4ZJJ/tgTGsRYCw==;EndpointSuffix=core.windows.net" 4 | } 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/CSVImport.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "asVbXMWrhvmN1VOlf0V29gA8rEqJkToUDKr8PLN44+YbtRReumW96/nXRuWTTD+fSMhiwu6o0ccMMbEa/ChQSw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c65a279ca7712394445546ef8879fa1b783ad5ec 2 | -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.assets.cache -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csproj.CopyComplete -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.dll -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.exe -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter8/Recipe6/CSVImport/CSVImport.Client/obj/Debug/netcoreapp3.1/CSVImport.Client.pdb -------------------------------------------------------------------------------- /Chapter8/Recipe6/CSVImport/CSVImport.DurableFunctions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/.suo -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Azure-Serverless-Computing-Cookbook-Third-Edition/a2a9196692f79ba40cf76d11130f44bafc80bea6/Chapter9/FunctionAppwithMSI/.vs/FunctionAppwithMSI/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Chapter9/FunctionAppwithMSI/FunctionAppwithMSI/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingExcludedTypes": "Request", 6 | "samplingSettings": { 7 | "isEnabled": true 8 | } 9 | } 10 | } 11 | } --------------------------------------------------------------------------------