João Pedro Antunes

Results 5 issues of João Pedro Antunes

I'm using IdentityServer4 (C#): is an OpenID Connect and OAuth 2.0 framework for ASP.NET Core. I will host IdentityServer4 using Kubernetes + SQL Database for storing client information. In order...

enhancement

I'm new on Azure Functions, and I've tried to use Autofac as the container of DI on the application. There are some services there are registered automatically by the function...

Azure Functions V2 has its own mechanism of DI that allows constructor/property injection. If i use this extension I'm able to use the Autofac DI features, and I'm able to...

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'm using IHttpResponseHandler to handle the execeptions using CreateResponseFromException: ```csharp public async Task CreateResponseFromException(TCommand command, Exception exception) where TCommand : ICommand { this.logger.LogError(exception.InnerException, exception.InnerException.Message); IActionResult response = new ContentResult() {...