Taylor Southwick

Results 69 issues of Taylor Southwick

I am using v3.0.0 of the Csv output formatter. However, I saw the following issue: ```csharp [Route("a")] [HttpGet] [Produces("text/csv")] public IEnumerable GetA() { var b = new[] { new B...

CSV

The Csv writer relies on Newtonsoft.Json for a lot of the writing, which forces it to be included. As of .NET Core 3.0, is not required. and this can be...

CSV

Looks like there is a check for if a result is IEnumerable while determining if the formatter applies. Is there a reason to require this? Can it just output an...

CSV

This are tests copied from the YAML tests and updated for CSV using CsvHelper for the deserializer/serializer. I've found a few bugs in it (including some tests that didn't work),...

CSV

I use IRepository to make it easy to mock, but when I upgraded recently to the newest version, I got a warning I was using a deprecated method. I tried...

This allows for decoupling the strongly-typed infrastructure more easily so that the underlying types don't need to know about the strongly typed information.

This is an initial change to move the infrastructure of the SDK to a separate assembly. This is done in a way that will not break the current set up...

We want to ensure that the library is compatible with the trimming in .NET 6+. In order to enable this, a few warnings must be addressed. These all appear to...

**Description** We should generate a feature that can produce enum info without reflection. This should be addressed in two phases: 1. Move enum info retrieval to a separate feature 2....