Helpful tool when you i.e want to create a bunch of SQL from lines in a CSV file.
- .Net 6
- When parsing lines with
","
it will not return the correct number of columns and data.
Run the following to build it as self-contained (without need to install .Net on the target machine)
dotnet publish -c Release -r win-x64 /p:PublishSingleFile=true /p:PublishTrimmed=true --self-contained
dotnet publish -c Release -r linux-x64 /p:PublishSingleFile=true /p:PublishTrimmed=true --self-contained
dotnet publish -c Release -r osx-arm64 /p:PublishSingleFile=true /p:PublishTrimmed=true --self-contained