mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
Pushed to PowerShell Gallery
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
RootModule = 'ImportExcel.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '1.83'
|
||||
ModuleVersion = '1.90'
|
||||
|
||||
# ID used to uniquely identify this module
|
||||
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
|
||||
|
||||
@@ -4,7 +4,7 @@ $p = @{
|
||||
NuGetApiKey = $NuGetApiKey
|
||||
LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt"
|
||||
Tag = "Excel","EPPlus","Export","Import"
|
||||
ReleaseNote = "For Import-Excel: added -NoHeader parameter and returns .Value"
|
||||
ReleaseNote = "Fixed v3.0 bug, added -HeaderRow, added Help for Export-Excel"
|
||||
ProjectUri = "https://github.com/dfinke/ImportExcel"
|
||||
}
|
||||
|
||||
|
||||
20
README.md
20
README.md
@@ -25,9 +25,27 @@ Know Issues
|
||||
What's new
|
||||
-
|
||||
|
||||
#### 10/19/2015
|
||||
#### 10/20/2015
|
||||
|
||||
Big bug for version 3.0 PowerShell folks!
|
||||
|
||||
This technique fails in 3.0 and works in 4.0 and later.
|
||||
```powershell
|
||||
$m="substring"
|
||||
"hello".$m(2,1)
|
||||
```
|
||||
|
||||
Adding `.invoke` works in 3.0 and later.
|
||||
|
||||
```powershell
|
||||
$m="substring"
|
||||
"hello".$m.invoke(2,1)
|
||||
```
|
||||
|
||||
A ***big thank you*** to [DarkLite1](https://github.com/DarkLite1) for adding the help to Export-Excel.
|
||||
|
||||
Added `-HeaderRow` parameter. Sometimes the heading does not start in Row 1.
|
||||
|
||||
|
||||
#### 10/16/2015
|
||||
|
||||
|
||||
Reference in New Issue
Block a user