Shane Krueger

Results 123 issues of Shane Krueger

TLDR - this should work, but doesn't currently: ```cs Field(....) .Argument("count"); ``` Fields like `Field(x => x.Price)` infer nullability via NRT. However, arguments like `.Argument("count")` always defaults to non-nullable, and...

enhancement

In #4182 a protected method to Schema was added to allow global modifications of types before they are initialized. Should a more comprehensive lifecycle hook system should be added? Example:...

Per CodeRabbit: > _⚠️ Potential issue_ | _🔴 Critical_ > > **PDF Pages/Kids must reference an indirect Page object (not an inline dictionary).** > > Kids arrays shall contain indirect...

This change will create smaller QR codes in v2, assuming that mode switching code is added.

enhancement

Add backwards compatibility method for .NET Standard 2.0 targets.

Since it does not affect the view box anymore

There are lots of intermediate allocations, that could be avoided. For .NET 10 the JIT will probably elide them, but for .NET 6+ string interpolation should be used. And IIRC...

Instead of the `byte[]` could we use a ```c# public struct Color { public byte R; public byte G; public byte B; public byte A; } ``` to avoid the...

By default, the ASCII 'small' renderer prints inverted compared to the ASCII standard renderer or any other renderer. It has a boolean 'invert' argument, which defaults to 'false'; setting this...

bug