mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-16 16:24:03 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61744012cd | ||
|
|
2cb4712bc5 | ||
|
|
6847a49baa | ||
|
|
b8a8f4c565 |
@@ -6,7 +6,7 @@
|
|||||||
RootModule = 'ImportExcel.psm1'
|
RootModule = 'ImportExcel.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '7.8.5'
|
ModuleVersion = '7.8.6'
|
||||||
|
|
||||||
# ID used to uniquely identify this module
|
# ID used to uniquely identify this module
|
||||||
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ function ConvertFrom-ExcelData {
|
|||||||
[ScriptBlock]$ScriptBlock,
|
[ScriptBlock]$ScriptBlock,
|
||||||
[Alias("Sheet")]
|
[Alias("Sheet")]
|
||||||
$WorksheetName = 1,
|
$WorksheetName = 1,
|
||||||
[int]$HeaderRow = 1,
|
[Alias('HeaderRow', 'TopRow')]
|
||||||
|
[int]$StartRow = 1,
|
||||||
[string[]]$Header,
|
[string[]]$Header,
|
||||||
[switch]$NoHeader,
|
[switch]$NoHeader,
|
||||||
[switch]$DataOnly
|
[switch]$DataOnly
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
# 7.8.6
|
||||||
|
|
||||||
|
- Thank you [John Boyne](https://github.com/kyllath)
|
||||||
|
- Add missing parameter aliases to align with caller/callee
|
||||||
|
|
||||||
# 7.8.5
|
# 7.8.5
|
||||||
|
|
||||||
- Added `Get-ExcelFileSchema` to get the schema of an Excel file.
|
- Added `Get-ExcelFileSchema` to get the schema of an Excel file.
|
||||||
|
|||||||
Reference in New Issue
Block a user