Skip to content

Commit 4acea73

Browse files
committed
Bump major version
Fix comments
1 parent 9268c57 commit 4acea73

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

ExcelMapper/ExcelMapper.cs

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void CreateWorkbook(bool xlsx)
230230
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
231231
/// <param name="file">The path to the Excel file.</param>
232232
/// <param name="sheetName">Name of the sheet.</param>
233-
/// <param name="valueConverter">Allow value parsing</param>
233+
/// <param name="valueConverter">Allow value conversion</param>
234234
/// <returns>The objects read from the Excel file.</returns>
235235
public IEnumerable<T> Fetch<T>(string file, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
236236
{
@@ -243,7 +243,7 @@ public IEnumerable<T> Fetch<T>(string file, string sheetName, Func<ValueConverte
243243
/// <param name="type">The type of objects the Excel file is mapped to.</param>
244244
/// <param name="file">The path to the Excel file.</param>
245245
/// <param name="sheetName">Name of the sheet.</param>
246-
/// <param name="valueConverter">Allow value parsing</param>
246+
/// <param name="valueConverter">Allow value conversion</param>
247247
/// <returns>The objects read from the Excel file.</returns>
248248
public IEnumerable Fetch(string file, Type type, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
249249
{
@@ -256,7 +256,7 @@ public IEnumerable Fetch(string file, Type type, string sheetName, Func<ValueCon
256256
/// </summary>
257257
/// <param name="file">The path to the Excel file.</param>
258258
/// <param name="sheetName">Name of the sheet.</param>
259-
/// <param name="valueConverter">Allow value parsing</param>
259+
/// <param name="valueConverter">Allow value conversion</param>
260260
/// <returns>The objects read from the Excel file.</returns>
261261
public IEnumerable<dynamic> Fetch(string file, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
262262
{
@@ -270,7 +270,7 @@ public IEnumerable<dynamic> Fetch(string file, string sheetName, Func<ValueConve
270270
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
271271
/// <param name="file">The path to the Excel file.</param>
272272
/// <param name="sheetIndex">Index of the sheet.</param>
273-
/// <param name="valueConverter">Allow value parsing</param>
273+
/// <param name="valueConverter">Allow value conversion</param>
274274
/// <returns>The objects read from the Excel file.</returns>
275275
public IEnumerable<T> Fetch<T>(string file, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
276276
{
@@ -283,7 +283,7 @@ public IEnumerable<T> Fetch<T>(string file, int sheetIndex, Func<ValueConverterA
283283
/// <param name="type">The type of objects the Excel file is mapped to.</param>
284284
/// <param name="file">The path to the Excel file.</param>
285285
/// <param name="sheetIndex">Index of the sheet.</param>
286-
/// <param name="valueConverter">Allow value parsing</param>
286+
/// <param name="valueConverter">Allow value conversion</param>
287287
/// <returns>The objects read from the Excel file.</returns>
288288
public IEnumerable Fetch(string file, Type type, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
289289
{
@@ -296,7 +296,7 @@ public IEnumerable Fetch(string file, Type type, int sheetIndex, Func<ValueConve
296296
/// </summary>
297297
/// <param name="file">The path to the Excel file.</param>
298298
/// <param name="sheetIndex">Index of the sheet.</param>
299-
/// <param name="valueConverter">Allow value parsing</param>
299+
/// <param name="valueConverter">Allow value conversion</param>
300300
/// <returns>The objects read from the Excel file.</returns>
301301
public IEnumerable<dynamic> Fetch(string file, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
302302
{
@@ -310,7 +310,7 @@ public IEnumerable<dynamic> Fetch(string file, int sheetIndex, Func<ValueConvert
310310
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
311311
/// <param name="stream">The stream the Excel file is read from.</param>
312312
/// <param name="sheetName">Name of the sheet.</param>
313-
/// <param name="valueConverter">Allow value parsing</param>
313+
/// <param name="valueConverter">Allow value conversion</param>
314314
/// <returns>The objects read from the Excel file.</returns>
315315
public IEnumerable<T> Fetch<T>(Stream stream, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
316316
{
@@ -323,7 +323,7 @@ public IEnumerable<T> Fetch<T>(Stream stream, string sheetName, Func<ValueConver
323323
/// <param name="type">The type of objects the Excel file is mapped to.</param>
324324
/// <param name="stream">The stream the Excel file is read from.</param>
325325
/// <param name="sheetName">Name of the sheet.</param>
326-
/// <param name="valueConverter">Allow value parsing</param>
326+
/// <param name="valueConverter">Allow value conversion</param>
327327
/// <returns>The objects read from the Excel file.</returns>
328328
public IEnumerable Fetch(Stream stream, Type type, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
329329
{
@@ -336,7 +336,7 @@ public IEnumerable Fetch(Stream stream, Type type, string sheetName, Func<ValueC
336336
/// </summary>
337337
/// <param name="stream">The stream the Excel file is read from.</param>
338338
/// <param name="sheetName">Name of the sheet.</param>
339-
/// <param name="valueConverter">Allow value parsing</param>
339+
/// <param name="valueConverter">Allow value conversion</param>
340340
/// <returns>The objects read from the Excel file.</returns>
341341
public IEnumerable<dynamic> Fetch(Stream stream, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
342342
{
@@ -350,7 +350,7 @@ public IEnumerable<dynamic> Fetch(Stream stream, string sheetName, Func<ValueCon
350350
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
351351
/// <param name="stream">The stream the Excel file is read from.</param>
352352
/// <param name="sheetIndex">Index of the sheet.</param>
353-
/// <param name="valueConverter">Allow value parsing</param>
353+
/// <param name="valueConverter">Allow value conversion</param>
354354
/// <returns>The objects read from the Excel file.</returns>
355355
public IEnumerable<T> Fetch<T>(Stream stream, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
356356
{
@@ -363,7 +363,7 @@ public IEnumerable<T> Fetch<T>(Stream stream, int sheetIndex, Func<ValueConverte
363363
/// <param name="type">The type of objects the Excel file is mapped to.</param>
364364
/// <param name="stream">The stream the Excel file is read from.</param>
365365
/// <param name="sheetIndex">Index of the sheet.</param>
366-
/// <param name="valueConverter">Allow value parsing</param>
366+
/// <param name="valueConverter">Allow value conversion</param>
367367
/// <returns>The objects read from the Excel file.</returns>
368368
public IEnumerable Fetch(Stream stream, Type type, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
369369
{
@@ -376,7 +376,7 @@ public IEnumerable Fetch(Stream stream, Type type, int sheetIndex, Func<ValueCon
376376
/// </summary>
377377
/// <param name="stream">The stream the Excel file is read from.</param>
378378
/// <param name="sheetIndex">Index of the sheet.</param>
379-
/// <param name="valueConverter">Allow value parsing</param>
379+
/// <param name="valueConverter">Allow value conversion</param>
380380
/// <returns>The objects read from the Excel file.</returns>
381381
public IEnumerable<dynamic> Fetch(Stream stream, int sheetIndex, Func<ValueConverterArgs, object> valueConverter = null)
382382
{
@@ -389,7 +389,7 @@ public IEnumerable<dynamic> Fetch(Stream stream, int sheetIndex, Func<ValueConve
389389
/// </summary>
390390
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
391391
/// <param name="sheetName">Name of the sheet.</param>
392-
/// <param name="valueConverter">Allow value parsing</param>
392+
/// <param name="valueConverter">Allow value conversion</param>
393393
/// <returns>The objects read from the Excel file.</returns>
394394
/// <exception cref="System.ArgumentOutOfRangeException">Thrown when a sheet is not found</exception>
395395
public IEnumerable<T> Fetch<T>(string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
@@ -402,7 +402,7 @@ public IEnumerable<T> Fetch<T>(string sheetName, Func<ValueConverterArgs, object
402402
/// </summary>
403403
/// <param name="type">The type of objects the Excel file is mapped to.</param>
404404
/// <param name="sheetName">Name of the sheet.</param>
405-
/// <param name="valueConverter">Allow value parsing</param>
405+
/// <param name="valueConverter">Allow value conversion</param>
406406
/// <returns>The objects read from the Excel file.</returns>
407407
/// <exception cref="System.ArgumentOutOfRangeException">Thrown when a sheet is not found</exception>
408408
public IEnumerable Fetch(Type type, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
@@ -417,7 +417,7 @@ public IEnumerable Fetch(Type type, string sheetName, Func<ValueConverterArgs, o
417417
/// Fetches objects from the specified sheet name.
418418
/// </summary>
419419
/// <param name="sheetName">Name of the sheet.</param>
420-
/// <param name="valueConverter">Allow value parsing</param>
420+
/// <param name="valueConverter">Allow value conversion</param>
421421
/// <returns>The objects read from the Excel file.</returns>
422422
/// <exception cref="System.ArgumentOutOfRangeException">Thrown when a sheet is not found</exception>
423423
public IEnumerable<dynamic> Fetch(string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
@@ -431,7 +431,7 @@ public IEnumerable<dynamic> Fetch(string sheetName, Func<ValueConverterArgs, obj
431431
/// </summary>
432432
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
433433
/// <param name="sheetIndex">Index of the sheet.</param>
434-
/// <param name="valueConverter">Allow value parsing</param>
434+
/// <param name="valueConverter">Allow value conversion</param>
435435
/// <returns>The objects read from the Excel file.</returns>
436436
public IEnumerable<T> Fetch<T>(int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
437437
{
@@ -444,7 +444,7 @@ public IEnumerable<T> Fetch<T>(int sheetIndex = 0, Func<ValueConverterArgs, obje
444444
/// </summary>
445445
/// <param name="type">The type of objects the Excel file is mapped to</param>
446446
/// <param name="sheetIndex">Index of the sheet.</param>
447-
/// <param name="valueConverter">Allow value parsing</param>
447+
/// <param name="valueConverter">Allow value conversion</param>
448448
/// <returns>The objects read from the Excel file.</returns>
449449
public IEnumerable Fetch(Type type, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
450450
{
@@ -458,7 +458,7 @@ public IEnumerable Fetch(Type type, int sheetIndex = 0, Func<ValueConverterArgs,
458458
/// Fetches objects from the specified sheet index.
459459
/// </summary>
460460
/// <param name="sheetIndex">Index of the sheet.</param>
461-
/// <param name="valueConverter">Allow value parsing</param>
461+
/// <param name="valueConverter">Allow value conversion</param>
462462
/// <returns>The objects read from the Excel file.</returns>
463463
public IEnumerable<dynamic> Fetch(int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
464464
{
@@ -689,7 +689,7 @@ private void TriggerOrThrowParsingError(ExcelMapperConvertException excelMapperC
689689
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
690690
/// <param name="file">The path to the Excel file.</param>
691691
/// <param name="sheetName">Name of the sheet.</param>
692-
/// <param name="valueConverter">Allow value parsing</param>
692+
/// <param name="valueConverter">Allow value conversion</param>
693693
/// <returns>The objects read from the Excel file.</returns>
694694
public async Task<IEnumerable<T>> FetchAsync<T>(string file, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
695695
{
@@ -701,7 +701,7 @@ public async Task<IEnumerable<T>> FetchAsync<T>(string file, string sheetName, F
701701
/// </summary>
702702
/// <param name="file">The path to the Excel file.</param>
703703
/// <param name="sheetName">Name of the sheet.</param>
704-
/// <param name="valueConverter">Allow value parsing</param>
704+
/// <param name="valueConverter">Allow value conversion</param>
705705
/// <returns>The objects read from the Excel file.</returns>
706706
public async Task<IEnumerable<dynamic>> FetchAsync(string file, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
707707
{
@@ -716,7 +716,7 @@ public async Task<IEnumerable<dynamic>> FetchAsync(string file, string sheetName
716716
/// <param name="type">The type of objects the Excel file is mapped to.</param>
717717
/// <param name="file">The path to the Excel file.</param>
718718
/// <param name="sheetName">Name of the sheet.</param>
719-
/// <param name="valueConverter">Allow value parsing</param>
719+
/// <param name="valueConverter">Allow value conversion</param>
720720
/// <returns>The objects read from the Excel file.</returns>
721721
public async Task<IEnumerable> FetchAsync(string file, Type type, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
722722
{
@@ -731,7 +731,7 @@ public async Task<IEnumerable> FetchAsync(string file, Type type, string sheetNa
731731
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
732732
/// <param name="file">The path to the Excel file.</param>
733733
/// <param name="sheetIndex">Index of the sheet.</param>
734-
/// <param name="valueConverter">Allow value parsing</param>
734+
/// <param name="valueConverter">Allow value conversion</param>
735735
/// <returns>The objects read from the Excel file.</returns>
736736
public async Task<IEnumerable<T>> FetchAsync<T>(string file, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
737737
{
@@ -745,7 +745,7 @@ public async Task<IEnumerable<T>> FetchAsync<T>(string file, int sheetIndex = 0,
745745
/// </summary>
746746
/// <param name="file">The path to the Excel file.</param>
747747
/// <param name="sheetIndex">Index of the sheet.</param>
748-
/// <param name="valueConverter">Allow value parsing</param>
748+
/// <param name="valueConverter">Allow value conversion</param>
749749
/// <returns>The objects read from the Excel file.</returns>
750750
public async Task<IEnumerable<dynamic>> FetchAsync(string file, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
751751
{
@@ -760,7 +760,7 @@ public async Task<IEnumerable<dynamic>> FetchAsync(string file, int sheetIndex =
760760
/// <param name="type">The type of objects the Excel file is mapped to.</param>
761761
/// <param name="file">The path to the Excel file.</param>
762762
/// <param name="sheetIndex">Index of the sheet.</param>
763-
/// <param name="valueConverter">Allow value parsing</param>
763+
/// <param name="valueConverter">Allow value conversion</param>
764764
/// <returns>The objects read from the Excel file.</returns>
765765
public async Task<IEnumerable> FetchAsync(string file, Type type, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
766766
{
@@ -775,7 +775,7 @@ public async Task<IEnumerable> FetchAsync(string file, Type type, int sheetIndex
775775
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
776776
/// <param name="stream">The stream the Excel file is read from.</param>
777777
/// <param name="sheetName">Name of the sheet.</param>
778-
/// <param name="valueConverter">Allow value parsing</param>
778+
/// <param name="valueConverter">Allow value conversion</param>
779779
/// <returns>The objects read from the Excel file.</returns>
780780
public async Task<IEnumerable<T>> FetchAsync<T>(Stream stream, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
781781
{
@@ -787,7 +787,7 @@ public async Task<IEnumerable<T>> FetchAsync<T>(Stream stream, string sheetName,
787787
/// </summary>
788788
/// <param name="stream">The stream the Excel file is read from.</param>
789789
/// <param name="sheetName">Name of the sheet.</param>
790-
/// <param name="valueConverter">Allow value parsing</param>
790+
/// <param name="valueConverter">Allow value conversion</param>
791791
/// <returns>The objects read from the Excel file.</returns>
792792
public async Task<IEnumerable<dynamic>> FetchAsync(Stream stream, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
793793
{
@@ -801,7 +801,7 @@ public async Task<IEnumerable<dynamic>> FetchAsync(Stream stream, string sheetNa
801801
/// <param name="type">The type of objects the Excel file is mapped to.</param>
802802
/// <param name="stream">The stream the Excel file is read from.</param>
803803
/// <param name="sheetName">Name of the sheet.</param>
804-
/// <param name="valueConverter">Allow value parsing</param>
804+
/// <param name="valueConverter">Allow value conversion</param>
805805
/// <returns>The objects read from the Excel file.</returns>
806806
public async Task<IEnumerable> FetchAsync(Stream stream, Type type, string sheetName, Func<ValueConverterArgs, object> valueConverter = null)
807807
{
@@ -815,7 +815,7 @@ public async Task<IEnumerable> FetchAsync(Stream stream, Type type, string sheet
815815
/// <typeparam name="T">The type of objects the Excel file is mapped to.</typeparam>
816816
/// <param name="stream">The stream the Excel file is read from.</param>
817817
/// <param name="sheetIndex">Index of the sheet.</param>
818-
/// <param name="valueConverter">Allow value parsing</param>
818+
/// <param name="valueConverter">Allow value conversion</param>
819819
/// <returns>The objects read from the Excel file.</returns>
820820
public async Task<IEnumerable<T>> FetchAsync<T>(Stream stream, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
821821
{
@@ -827,7 +827,7 @@ public async Task<IEnumerable<T>> FetchAsync<T>(Stream stream, int sheetIndex =
827827
/// </summary>
828828
/// <param name="stream">The stream the Excel file is read from.</param>
829829
/// <param name="sheetIndex">Index of the sheet.</param>
830-
/// <param name="valueConverter">Allow value parsing</param>
830+
/// <param name="valueConverter">Allow value conversion</param>
831831
/// <returns>The objects read from the Excel file.</returns>
832832
public async Task<IEnumerable<dynamic>> FetchAsync(Stream stream, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
833833
{
@@ -841,7 +841,7 @@ public async Task<IEnumerable<dynamic>> FetchAsync(Stream stream, int sheetIndex
841841
/// <param name="type">The type of objects the Excel file is mapped to.</param>
842842
/// <param name="stream">The stream the Excel file is read from.</param>
843843
/// <param name="sheetIndex">Index of the sheet.</param>
844-
/// <param name="valueConverter">Allow value parsing</param>
844+
/// <param name="valueConverter">Allow value conversion</param>
845845
/// <returns>The objects read from the Excel file.</returns>
846846
public async Task<IEnumerable> FetchAsync(Stream stream, Type type, int sheetIndex = 0, Func<ValueConverterArgs, object> valueConverter = null)
847847
{

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 5.2.{build}
1+
version: 6.0.{build}
22
skip_tags: true
33
image: Visual Studio 2022
44
environment:

0 commit comments

Comments
 (0)