Mark Pflug
Mark Pflug
Nevermind. I guess I can't figure this out. I pulled the repo locally, but can't figure out how to build anything. `dotnet build` is complaining that I don't have .NET...
I must be doing something wrong. I've tried following those instructions, but I'm getting a wall of MSBuild errors about missing imported projects: Microsoft.Cpp.Defaults.props? I probably don't have a prereq...
No, I don't have any immediate plans to add this feature.
This is being added in 0.4.6-b0001 (prerelease currently). ExcelDataReader now has a "WorksheetNames" enumeration, and a `TryOpenWorksheet(string name)` method. Not sure when the final 0.4.6 build will be released, there...
Well, it took me more than a year to get around to it, but I've finally added proper async support to the library. You'd need to change your code to...
Hello, I'll submit my own library for comparison: [Sylvan.Data.Csv](https://github.com/MarkPflug/Sylvan). I believe it is currently the fastest CSV parser in the .NET ecosystem. I recently added a [SIMD fast-path](https://github.com/MarkPflug/Sylvan/blob/901cbf8f9cce316288e28a7ec6ff513e4f4e2731/source/Sylvan.Data.Csv/CsvDataReader.cs#L274) that processes...
Instead of multi-targeting, I'd suggest adding a `Major` to the xstyle .csproj. This would allow you to continue to build against a single framework version (6.0), but allow the tool...
As I commented on #419, a better way to fix this would be via a RollForward=Major policy: https://learn.microsoft.com/en-us/dotnet/core/versions/selection#control-roll-forward-behavior Indeed, users should already be able fix this themselves my adding it...
Sounds like a good fix. Do you want to provide a pull request for it?
This is a reasonable feature request, but I don't have any intent on working on it any time soon. If you need this functionality, you can implement it yourself (yay,...