[Bug] Fix extra GetDataReader method

This commit is contained in:
Wei 2022-02-14 16:37:35 +08:00
parent c46a03dfc7
commit 9b6c2c3d0d
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
return new MiniExcelDataReader(stream, useHeaderRow, sheetName, excelType, startCell, configuration);
}
public static MiniExcelDataReader GetDataReader(this Stream stream, bool useHeaderRow = false, string sheetName = null, ExcelType excelType = ExcelType.UNKNOWN, string startCell = "A1", IConfiguration configuration = null)
public static MiniExcelDataReader GetReader(this Stream stream, bool useHeaderRow = false, string sheetName = null, ExcelType excelType = ExcelType.UNKNOWN, string startCell = "A1", IConfiguration configuration = null)
{
return new MiniExcelDataReader(stream, useHeaderRow, sheetName, excelType, startCell, configuration);
}

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0;net5.0</TargetFrameworks>
<Version>1.23.0</Version>
<Version>1.23.1</Version>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>MiniExcel</AssemblyName>