Gabriel Bider
Gabriel Bider
Why hasn't this been fixed yet? Shouldn't be that hard to add `r` to the same highlighting category as `R`.
@kitten Same problem here, is there any reason why `createGlobalStyle` is immune to minification?
Oh, why is that? A clarification, this was actually the return type of an action in ASP.NET Core. It used to serialize it as a regular `IEnumerable`, but doesn't work...
Okay, I see then. I converted it to a `Task` to make it work. The error occurs when SpanJson is scanning and reflecting the controller actions to determine how to...
Just create an ASP.NET Core project with a controller containing an action with the return type `IAsyncEnumerable` targeting .NET 6, and you should hit the error as soon as you...
I kinda figured it out. When I use `return Json(object)` in the controller action, it ignores the attributes. But when using `return Ok(object)` or `return new ObjectResult(object)` it works. The...
Thanks! I came to the very same conclusion just as I saw your reply :) When using Newtonsoft, they simply override the default `IActionResultExecutor` with their own implementation. Perhaps something...
Same here. Any solution so far?
Any status on this? Right now I have to open all files one by one to see if there are any errors reported in them.
Great find regarding the workaround, Matt! This should be helpful to the VS developers for them to fix the original issue as well, I believe :)