Josh Close
Josh Close
I started implementing file helpers and found that it only outputs class objects. There is no way to get a string field out of each row. @joelverhagen If you want...
I just tried publishing and copying the files in instead of building in the container and I have the same result. The server where this isn't working is Ubuntu 18.04,...
Just confirmed it works fine in mcr.microsoft.com/dotnet/core/aspnet:3.1-bionic ``` FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-bionic as base EXPOSE 80 VOLUME /etc/nginx VOLUME /etc/ssl VOLUME /myproject ADD tools/ssl/myproject* /etc/ssl/ # Install git. RUN apt-get update &&...
Can you provide the class structure that it's trying to map?
Do you want to email me an example so it isn't public?
Meaning, the full class structure that causes the failure.
Can you reproduce it while debugging? If so, the PDB files are on NuGet. You can set your symbols server and debug into the source code. https://docs.microsoft.com/en-us/visualstudio/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger?view=vs-2017
Do you have some code you could zip up and email me so I can reproduce it?
@philipflesher I would have to go through and do an audit. There should be locks in places where there are statics, but it's possible I've added something at some point...
This is a place when auto mapping that it could happen. https://github.com/JoshClose/CsvHelper/blob/6b339704fe22eb8c90b2d3da6e8470561d7c708a/src/CsvHelper/Configuration/ClassMap.cs#L145 There is a `CheckForCircularReference` method that is called to ensure that doesn't happen. There could be a bug...