[CSVToSVG] culture problem

Hi guys.

I found very useful application called CSV to SVG. It helps us a lot with generating performance reports but I encounter very disappointing bug. It’s easy to fix and would be great to fix it soon.
The problem is with culture settings. Right now is default so when you launch application on culture where '." is ‘,’ (like pl-pl) then svg file is broken :slight_smile:
Fast and simple fix is to set to “en-US” culture at beginning of app in main function.



var culture = new CultureInfo("en-US");
CultureInfo.DefaultThreadCurrentCulture = culture;
CultureInfo.DefaultThreadCurrentUICulture = culture;


thx a lot

solution for now is to open PowerShell and run command before using CSV tools:


Set-Culture -CultureInfo en-US