Gabriel Bider
Gabriel Bider
I'm having an issue with that the order the CSS modules are loaded isn't consistent; it is slightly different on every build. This affects the resulting hash of the generated...
- [X] I'm sure this issue is not a _duplicate_. Does the current JSON settings schema support forcing the use of the light theme icon variant even when using a...
C# 9 records
Are there any plans to add support for records (added in C# 9/.NET 5), more specifically positional records?
Now that .NET Standard and .NET Core 3.0 is out, do you have any plans to further optimize the library by using `ArrayPool` and `Span`?
When you have a class that extends its parent class - and that parent class is generic - you get the following exception. Maybe it could be avoided by implementing...
I've had a piece of code that serializes an `IAsyncEnumerable` since this type was introduced in .NET Core 3.1 and it's been working great together with SpanJson. Recently, I upgraded...
I'm returning a JSON object in a controller action which I would like to use alternative property names for. Unfortunately it doesn't seem like the `[DataMember(Name="differentName")]` is working. I'm getting...
**Summary:** I'm of the opinion that a modern library should only target framework versions that are currently supported. I'm noticing that FlatFiles targets .NET Core 1.x which is no longer...
Does Grace automatically dispose not only services implementing `IDisposable` but also the newly introduced (.NET Standard 2.1 / .NET Core 3.0) async version named `IAsyncDisposable`?
When using the `WithCtorParam` method with a single argument and in need to resolve a dependency with specific key, I know that you can use `LocateWithKey` like this: ``` _.Export().WithCtorParam().LocateWithKey("key")...