-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Update CsvHelper to v31.0.3 and ClosedXml to v0.102.2 #48
base: main
Are you sure you want to change the base?
Conversation
Update CsvHelper to v30.0.1 and ClosedXml to v0.101.0
chore: updated package info
{ | ||
var workbook = new XLWorkbook(stream, XLEventTracking.Disabled); | ||
var workbook = new XLWorkbook(stream); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the input file is not an Excel file, but csv file. it will throw an exception
I thought the orignal idea was to support both csv and excel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The original would have thrown an exception there as well.
This issue is probably better suited for a different PR. This PR merely updates the ClosedXml and CsvHelper libraries, with fixes to some breaking changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code works
The input has to be an excel file
Need to upgrade the libaries version again
upgrade CsvHelper from 30.0.1 to 31.0.3 upgrade testing libraries
I've updated the libraries to their latest version. |
This change is