Christian Kortlang
Christian Kortlang
### Version 7.6.0 ### Steps and/or minimal code example to reproduce ```C# public static MonitoringFacade MonitorApplicationLoadBalancer(this MonitoringFacade monitoringFacade, ApplicationLoadBalancer alb, string region = "us-west-2") { ArgumentException.ThrowIfNullOrWhiteSpace(region, nameof(region)); var albDimensions =...
### Describe the bug EBSOptions models Iops and VolumeSize as `double` but the cloud formation template defines them as `int`. Deployments fail when these values are set to none integer...
### What is the bug? Deserialization Cannot Handle Types with Constructors with Optional Parameters ``` System.Exception: Cannot create an instance of System.Text.Json.Nodes.JsonObject because it does not have a public constructor...
### What is the bug? Deserialization Cannot Handle Types which Implement IDisposable (JsonDocument) ``` ObjectDisposedException: Cannot access a disposed object. Object name: 'JsonDocument'. ``` ### How can one reproduce the...
```C# //Should fail when id does not equal "hello" or "world". Expect 400 response builder.MapGet("/test/{id}", async ([FromRoute, RegularExpression("^(hello|world)$")] string id) => { //Currently returns "hello world" regardless of validation return...
```F# //Given let sanityExpr, sanityExprImpl = createParserForwardedToRef() let sanityParser = OperatorPrecedenceParser() sanityParser.AddOperator(InfixOperator("+", spaces, 100, Associativity.Left, fun s1 s2 -> s1 + s2)) let sanityTerm = (choice [ attempt (pWordCI "hello");...
### Describe the bug `dotnet workload install wasm-tools ` supposedly succeeds but there is a warning indicating a failure. The tool is listed as installed but attempting to compile a...