Brian Feucht

Results 8 comments of Brian Feucht

@JonathanMagnan for what is it worth, build 1.5.5 returns a parsing error for these cases. This is blocking us from converting projects to .NET Standard. Something about the 1.5.5 build...

Sorry I reread your previous comment. I'll see what I can do from here to change our unit tests then

[ImageSharp ](https://docs.sixlabors.com/articles/imagesharp/index.html?tabs=tabid-1)just released RC2. I would love an implementation of the `ImagePixelExtractingTransformer` which is based of ImageSharp instead of GDI I started to take a look at implementing something locally,...

Anyone able to figure out an easy way to do this? It looks like I might be able to just steal the `LAMBDA_RUNTIME_DIR` from the published docker image. Since this...

This PR gives you this ability - https://github.com/Suchiman/SerilogAnalyzer/pull/53

I ran into this issue today. We had a Tentacle upgrade hang and blocked deployments to our auto scaling infrastructure. Hopefully it was a one time occurrence, but ideally it...

Sample implementation: ``` builder.Services.Configure(options => { var existingBinders = options.ModelBinderProviders .Where(x => x.GetType() == typeof(CancellationTokenModelBinderProvider)).ToArray(); foreach (var binder in existingBinders) { options.ModelBinderProviders.Remove(binder); } options.ModelBinderProviders.Insert(0, new LambdaRemainingTimeCancellationTokenModelBinderProvider()); }); public class LambdaRemainingTimeCancellationTokenModelBinderProvider...

@JinsPeter Here is what we have done (via forked code): Create an implementation of `StructuredLoggerAnalyzer` with the following overridden: - `ILogger` with the implementation type you'd like to analyze -...