Added Import-Html support and examples

This commit is contained in:
dfinke
2016-02-22 11:27:56 -05:00
parent 845855a2bc
commit ac71736725
9 changed files with 117 additions and 21 deletions

View File

@@ -4,11 +4,27 @@ $TargetPath = "$($ModulePath)\$($ModuleName)"
if(!(Test-Path $TargetPath)) { md $TargetPath | out-null}
Get-HtmlTable.ps1
Import-Html.ps1
$FilesToCopy = dir -erroraction ignore *.psm1, *.psd1, *.dll, New-ConditionalFormattingIconSet.ps1, Export-Excel.ps1, Export-ExcelSheet.ps1, New-ExcelChart.ps1, Invoke-Sum.ps1, InferData.ps1, Get-ExcelColumnName.ps1, Get-XYRange.ps1, Charting.ps1, New-PSItem.ps1, Pivot.ps1, Get-ExcelSheetInfo.ps1, New-ConditionalText.ps1
$FilesToCopy | ForEach {
Copy-Item -Verbose -Path $_.FullName -Destination "$($TargetPath)\$($_.name)"
}
$targetFiles = echo `
*.psm1 `
*.psd1 `
*.dll `
New-ConditionalFormattingIconSet.ps1 `
Export-Excel.ps1 `
Export-ExcelSheet.ps1 `
New-ExcelChart.ps1 `
Invoke-Sum.ps1 `
InferData.ps1 `
Get-ExcelColumnName.ps1 `
Get-XYRange.ps1 `
Charting.ps1 `
New-PSItem.ps1 `
Pivot.ps1 `
Get-ExcelSheetInfo.ps1 `
New-ConditionalText.ps1 `
Get-HtmlTable.ps1 `
Import-Html.ps1
ls $targetFiles |
ForEach {
Copy-Item -Verbose -Path $_.FullName -Destination "$($TargetPath)\$($_.name)"
}