fsprojects / ExcelProvider

This library is for the .NET platform implementing a Excel type provider.
http://fsprojects.github.io/ExcelProvider/
The Unlicense
141 stars 51 forks source link

Case insensitive ends with on EndsWith #21

Closed ledbutter closed 8 years ago

ledbutter commented 9 years ago

I ran into an inexplicable NullReferenceException when trying to load an XLSX file that I used ".XLSX" in the file path for the ExcelProvider constructor. It wasn't until I ran it locally that I discovered the problem was a case sensitive call to EndsWith(). This fixes that.

ledbutter commented 9 years ago

The build failed, but when I clicked on details Travis claimed that this wasn't an active project???

dsyme commented 9 years ago

I deactivated it because it should never have been trying to build this on Linux (AFAIK). The build relies on "Excel.dll" which AFAIK is only available on Windows.

ledbutter commented 9 years ago

@dsyme Thanks, that makes sense.