FunctionMonkey
FunctionMonkey copied to clipboard
Write more elegant Azure Functions with less boilerplate, more consistency, and support for REST APIs. Docs can be found at https://functionmonkey.azurefromthetrenches.com
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [swagger-ui-dist](https://github.com/swagger-api/swagger-ui) from 3.24.3 to 4.1.3. Release notes Sourced from swagger-ui-dist's releases. Swagger UI v4.1.3 Released! 4.1.3 (2021-12-10) Bug Fixes security: disable reading config params from URL search params (#7697)...
Bumps [Microsoft.AspNetCore.Authentication.JwtBearer](https://github.com/aspnet/AspNetCore) from 3.1.0 to 3.1.18. Release notes Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases. .NET Core 3.1.18 Release .NET Core 3.1.17 Release .NET Core 3.1.16 Release .NET Core 3.1.15 Release .NET Core...
In my code I have the following Cosmosdb change-feed function: ``` .CosmosDb("cosmosDbConnection", cosmos => cosmos .ChangeFeedFunction( "[scrubbed]", "[scrubbed]", leaseDatabaseName: "[scrubbed]", createLeaseCollectionIfNotExists: true, convertToPascalCase: true))); ``` providing both the `leaseDatabaseName` as...
Hi. I have just updated from 4.0.45-beta4 to 4.0.56-beta4 and are running into some compiler errors afterwards on a project running .NET Core 3.1.1 The compiler error is `C:\Users\vaxh\.nuget\packages\functionmonkey.compiler\4.0.56-beta.4\build\netstandard1.0\FunctionMonkey.Compiler.targets(29,5): error...
Is there any possibility to access the Azure App configuration. Below is how my code looks like. Here is the link: https://docs.microsoft.com/en-us/azure/azure-app-configuration/quickstart-azure-functions-csharp public class Configuration : FunctionMonkey.Abstractions.IFunctionAppConfiguration { public void...
I'm trying to update my old stable FunctionMonkey version to the most recent beta, so it can use 3.1 e new azure functions. I'm struggling with several issues, so I...
I am actually a newbie in C#, but can you let me know how to access the request headers in my handler. I am using the below in my config...
Hi, James! I downloaded FunctionMonkey repository and tried to build it. I use VS 2019 Unfortunately compiling of FunctionMonkey.Compiler failed with error: D:\MyProjects\FunctionMonkey\Source\FunctionMonkey.Compiler.Core\FunctionMonkey.Compiler.Core.csproj(226,5): error MSB3073: The command "yarn" exited with...
How can I set up a function that will download a Zip file to the client when completed? I have a function that will generate multiple PDF documents and would...