jehugaleahsa / FlatFiles

Reads and writes CSV, fixed-length and other flat file formats with a focus on schema definition, configuration and speed.
The Unlicense
357 stars 64 forks source link

ExcelHelpers GetConnectionString oldExtensions typo #9

Closed ufosnowcat closed 9 years ago

ufosnowcat commented 9 years ago

Hello, i noticed a probable typo in FlatFiles.excelHelpers.getConnectionString(string fileName)

string[] oldExtensions = new string[] { ".xsl" -----> should be ".xls" };

see https://en.wikipedia.org/wiki/List_of_Microsoft_Office_filename_extensions#Excel

For the rest tnx for the handy library :)

jehugaleahsa commented 9 years ago

Thanks for the bug report. I have corrected the extension and pushed out a new version to NuGet.

ufosnowcat commented 9 years ago

tnx