mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-11 13:53:20 +00:00
Bumped version, sorted function exports
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
RootModule = 'ImportExcel.psm1'
|
RootModule = 'ImportExcel.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '5.4.5'
|
ModuleVersion = '6.0.0'
|
||||||
|
|
||||||
# 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'
|
||||||
@@ -62,23 +62,6 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
|
|
||||||
# Functions to export from this module
|
# Functions to export from this module
|
||||||
FunctionsToExport = @(
|
FunctionsToExport = @(
|
||||||
'BarChart',
|
|
||||||
'ColumnChart',
|
|
||||||
'DoChart',
|
|
||||||
'LineChart',
|
|
||||||
'PieChart',
|
|
||||||
'Pivot',
|
|
||||||
'Get-XYRange',
|
|
||||||
'Invoke-AllTests',
|
|
||||||
'Test-Boolean',
|
|
||||||
'Test-Date',
|
|
||||||
'Test-Integer',
|
|
||||||
'Test-Number',
|
|
||||||
'Test-String',
|
|
||||||
'New-PSItem',
|
|
||||||
'Import-Html',
|
|
||||||
'Import-UPS',
|
|
||||||
'Import-USPS',
|
|
||||||
'Add-ConditionalFormatting',
|
'Add-ConditionalFormatting',
|
||||||
'Add-ExcelChart',
|
'Add-ExcelChart',
|
||||||
'Add-ExcelDataValidationRule',
|
'Add-ExcelDataValidationRule',
|
||||||
@@ -86,14 +69,17 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
'Add-ExcelTable',
|
'Add-ExcelTable',
|
||||||
'Add-PivotTable',
|
'Add-PivotTable',
|
||||||
'Add-WorkSheet',
|
'Add-WorkSheet',
|
||||||
|
'BarChart',
|
||||||
'Close-ExcelPackage',
|
'Close-ExcelPackage',
|
||||||
|
'ColumnChart',
|
||||||
'Compare-WorkSheet',
|
'Compare-WorkSheet',
|
||||||
|
'Convert-XlRangeToImage',
|
||||||
'ConvertFrom-ExcelData',
|
'ConvertFrom-ExcelData',
|
||||||
'ConvertFrom-ExcelSheet',
|
'ConvertFrom-ExcelSheet',
|
||||||
'ConvertFrom-ExcelToSQLInsert',
|
'ConvertFrom-ExcelToSQLInsert',
|
||||||
'ConvertTo-ExcelXlsx',
|
'ConvertTo-ExcelXlsx',
|
||||||
'Convert-XlRangeToImage',
|
|
||||||
'Copy-ExcelWorkSheet',
|
'Copy-ExcelWorkSheet',
|
||||||
|
'DoChart',
|
||||||
'Expand-NumberFormat',
|
'Expand-NumberFormat',
|
||||||
'Export-Excel',
|
'Export-Excel',
|
||||||
'Export-ExcelSheet',
|
'Export-ExcelSheet',
|
||||||
@@ -103,9 +89,15 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
'Get-ExcelWorkbookInfo',
|
'Get-ExcelWorkbookInfo',
|
||||||
'Get-HtmlTable',
|
'Get-HtmlTable',
|
||||||
'Get-Range',
|
'Get-Range',
|
||||||
|
'Get-XYRange',
|
||||||
'Import-Excel',
|
'Import-Excel',
|
||||||
|
'Import-Html',
|
||||||
|
'Import-UPS',
|
||||||
|
'Import-USPS',
|
||||||
|
'Invoke-AllTests',
|
||||||
'Invoke-Sum',
|
'Invoke-Sum',
|
||||||
'Join-Worksheet',
|
'Join-Worksheet',
|
||||||
|
'LineChart',
|
||||||
'Merge-MultipleSheets',
|
'Merge-MultipleSheets',
|
||||||
'Merge-Worksheet',
|
'Merge-Worksheet',
|
||||||
'New-ConditionalFormattingIconSet',
|
'New-ConditionalFormattingIconSet',
|
||||||
@@ -113,8 +105,11 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
'New-ExcelChartDefinition',
|
'New-ExcelChartDefinition',
|
||||||
'New-PivotTableDefinition',
|
'New-PivotTableDefinition',
|
||||||
'New-Plot',
|
'New-Plot',
|
||||||
|
'New-PSItem',
|
||||||
'NumberFormatCompletion',
|
'NumberFormatCompletion',
|
||||||
'Open-ExcelPackage',
|
'Open-ExcelPackage',
|
||||||
|
'PieChart',
|
||||||
|
'Pivot',
|
||||||
'Remove-WorkSheet'
|
'Remove-WorkSheet'
|
||||||
'Select-Worksheet',
|
'Select-Worksheet',
|
||||||
'Send-SQLDataToExcel',
|
'Send-SQLDataToExcel',
|
||||||
@@ -122,6 +117,11 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
'Set-ExcelColumn',
|
'Set-ExcelColumn',
|
||||||
'Set-ExcelRange',
|
'Set-ExcelRange',
|
||||||
'Set-ExcelRow',
|
'Set-ExcelRow',
|
||||||
|
'Test-Boolean',
|
||||||
|
'Test-Date',
|
||||||
|
'Test-Integer',
|
||||||
|
'Test-Number',
|
||||||
|
'Test-String',
|
||||||
'Update-FirstObjectProperties'
|
'Update-FirstObjectProperties'
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -132,7 +132,8 @@ Check out the How To Videos https://www.youtube.com/watch?v=U3Ne_yX4tYo&list=PL5
|
|||||||
#VariablesToExport = '*'
|
#VariablesToExport = '*'
|
||||||
|
|
||||||
# Aliases to export from this module
|
# Aliases to export from this module
|
||||||
AliasesToExport = @('New-ExcelChart',
|
AliasesToExport = @(
|
||||||
|
'New-ExcelChart',
|
||||||
'Set-Column',
|
'Set-Column',
|
||||||
'Set-Format',
|
'Set-Format',
|
||||||
'Set-Row',
|
'Set-Row',
|
||||||
|
|||||||
Reference in New Issue
Block a user