Renato Golia

Results 83 comments of Renato Golia

I didn't like that I had to write `GetFiles(testDirectory.FullPath + "/**/*.csproj")`, but I didn't know that `GetFiles($"{testDirectory}/**/*.csproj")` is supported.

Thanks @klaytaybai For future desperate souls, you can find the same question on StackOverflow here: https://stackoverflow.com/questions/57562352/aws-alb-returning-502-from-lambda-instead-of-custom-http-status

Also, in the documentation it's clearly state that the `statusDescription` cannot be null and needs to contain the status and the reason separated by a space. Here is the relevant...

That would be helpful, but where would you get the reason phrase from? I used ReasonPhrases.GetReasonPhrase(int) but I am not sure taking a dependency on Microsoft.AspNetCore.WebUtilities is worth it

Also... On a sidenote, would it be possible to make the dictionary containing the headers use a case insensitive comparer? While working on converting a lambda from API Gateway to...

As author of the aforementioned [Kralizek Lambda Template](https://github.com/Kralizek/AWSLambdaSharpTemplate), I'd love if there was a built-in approach for defining lambda functions without the need of external libraries :)

This would also work, but if you modify the path, it's more complicated from the caller application to switch behaviour from dev to prod. Ideally it should be as easy...