mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-17 00:33:58 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9afc1dbec2 | ||
|
|
7e684b87e3 | ||
|
|
6b9aed612c | ||
|
|
2647081312 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -63,5 +63,5 @@ ImportExcel.zip
|
|||||||
.vscode/settings.json
|
.vscode/settings.json
|
||||||
|
|
||||||
~$*
|
~$*
|
||||||
InstallModule.ps1
|
# InstallModule.ps1
|
||||||
PublishToGallery.ps1
|
# PublishToGallery.ps1
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
RootModule = 'ImportExcel.psm1'
|
RootModule = 'ImportExcel.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '6.5.3'
|
ModuleVersion = '6.5.2'
|
||||||
|
|
||||||
# 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'
|
||||||
|
|||||||
3
InstallModule.ps1
Normal file
3
InstallModule.ps1
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
$fullPath = 'C:\Program Files\WindowsPowerShell\Modules\ImportExcel'
|
||||||
|
|
||||||
|
Robocopy . $fullPath /mir /XD .vscode .git examples data /XF appveyor.yml azure-pipelines.yml .gitattributes .gitignore
|
||||||
6
PublishToGallery.ps1
Normal file
6
PublishToGallery.ps1
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
$p = @{
|
||||||
|
Name = "ImportExcel"
|
||||||
|
NuGetApiKey = $NuGetApiKey
|
||||||
|
}
|
||||||
|
|
||||||
|
Publish-Module @p
|
||||||
12
README.md
12
README.md
@@ -52,22 +52,22 @@ Install-Module ImportExcel -scope CurrentUser
|
|||||||
Install-Module ImportExcel
|
Install-Module ImportExcel
|
||||||
```
|
```
|
||||||
|
|
||||||
# What's new 6.5.3
|
|
||||||
|
# What's new 6.5.2
|
||||||
|
|
||||||
Thank you [uSlackr](https://github.com/uSlackr)
|
Thank you [uSlackr](https://github.com/uSlackr)
|
||||||
- Fixes Column order issue (plus tests) for `Get-ExcelColumnName`
|
- Fixes Column order issue (plus tests) for `Get-ExcelColumnName`
|
||||||
|
|
||||||
Thank you [jhoneill](https://github.com/jhoneill)
|
Thank you [jhoneill](https://github.com/jhoneill)
|
||||||
|
- Added -Force to Send-SQLDataToExcel so it sends something even if no rows are returned. (see [#703](https://github.com/dfinke/ImportExcel/issues/703))
|
||||||
|
- Added -asText to import-Excel see (#164)[https://github.com/dfinke/ImportExcel/issues/164] and multiple others
|
||||||
- Linux. Now set an environment variable if the support needed for Autosize is present, and use that Environment variable to decide to skip autosize operations.
|
- Linux. Now set an environment variable if the support needed for Autosize is present, and use that Environment variable to decide to skip autosize operations.
|
||||||
- Fixed tests which needed autosize to work so they skip of the environment variable is set.
|
- Fixed tests which needed autosize to work so they skip of the environment variable is set.
|
||||||
- Fixed another break where on azure the module never loaded.
|
- Fixed another break where on azure the module never loaded.
|
||||||
- Added -Force to Send-SQLDataToExcel so it sends something even if no rows are returned. (see [#703](https://github.com/dfinke/ImportExcel/issues/703))
|
|
||||||
- Added -asText to import-Excel see (#164)[https://github.com/dfinke/ImportExcel/issues/164] and multiple others
|
|
||||||
- Add a comment to ci.ps1 re better .NET version detection and left some commented out code.
|
- Add a comment to ci.ps1 re better .NET version detection and left some commented out code.
|
||||||
|
|
||||||
# What's new 6.5.2
|
Other
|
||||||
|
- Added the example [ReadAllSheets.ps1](https://github.com/dfinke/ImportExcel/tree/master/Examples/ReadAllSheets) based on this thread https://github.com/dfinke/ImportExcel/issues/678
|
||||||
- Added the example ReadAllSheets.ps1 based on the thread https://github.com/dfinke/ImportExcel/issues/678
|
|
||||||
|
|
||||||
# What's new 6.5.0
|
# What's new 6.5.0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user