Josh Close
Josh Close
Try version 31.0.2.
What version of Visual Studio? What kind of project is it? Do you have other NuGet packages installed? If you look in your output, what version of `Microsoft.Bcl.AsyncInterfaces` is there?
Will the list of video in each UserProduct always have the same count and be in the same order? I would say it's easiest to just write by hand. ```cs...
Just write the header manually then. Set `HasHeaderRecord = false`
You need to register your class map. ```cs csv.Context.RegisterClassMap(); ```
I removed this dependency and it builds fine. It'll be gone in the next release.
There are some issues with this and System.Linq.Async. I need to figure some things out here.
`System.Threading.Tasks.Extensions` was able to be removed. We'll see if this fixes your issue.
Try version 31.0.2.
Easiest way is to use `DateTimeOffset` instead. Another option would be to use a custom type converter. ```cs public class UtcDateTimeConverter : DateTimeConverter { public override object ConvertFromString(string text, IReaderRow...