Fix for CI

This commit is contained in:
jhoneill
2019-12-01 00:15:05 +00:00
parent d1c347285f
commit 6b033d7451
2 changed files with 18 additions and 45 deletions

View File

@@ -2,7 +2,6 @@
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @('.\EPPlus.dll')
# Script module or binary module file associated with this manifest.
RootModule = 'ImportExcel.psm1'

View File

@@ -22,53 +22,27 @@ param(
)
# Set Files and Folders patterns to Include/Exclude.
$IncludeFiles = @(
'*.dll',
'EPPlus.dll',
'*.psd1',
'*.psm1',
'AddConditionalFormatting.ps1',
'AddDataValidation.ps1',
'Charting.ps1',
'ColorCompletion.ps1',
'Compare-Worksheet.ps1',
'ConvertExcelToImageFile.ps1',
'ConvertFromExcelData.ps1',
'ConvertFromExcelToSQLInsert.ps1',
'ConvertToExcelXlsx.ps1',
'Copy-ExcelWorksheet.ps1',
'Export-Excel.ps1',
'Export-ExcelSheet.ps1',
'Export-StocksToExcel.ps1',
'Get-ExcelColumnName.ps1',
'Get-ExcelSheetInfo.ps1',
'Get-ExcelWorkbookInfo.ps1',
'Get-HtmlTable.ps1',
'Get-Range.ps1',
'Get-XYRange.ps1',
'Import-Html.ps1',
'InferData.ps1',
'Invoke-Sum.ps1',
'Join-Worksheet.ps1',
'Merge-Worksheet.ps1',
'New-ConditionalFormattingIconSet.ps1',
'New-ConditionalText.ps1',
'New-ExcelChart.ps1',
'New-PSItem.ps1',
'Open-ExcelPackage.ps1',
'Pivot.ps1',
'PivotTable.ps1',
'Plot.ps1',
'RemoveWorksheet.ps1',
'Send-SQLDataToExcel.ps1',
'Set-CellStyle.ps1',
'Set-Column.ps1',
'Set-Row.ps1',
'Set-WorksheetProtection.ps1',
'SetFormat.ps1',
'TrackingUtils.ps1',
'Update-FirstObjectProperties.ps1'
)
'*.ps1'
'Charting',
'en-US',
'Examples',
'ExportedCommands',
'images',
'InferData',
'InternalFunctions',
'Pivot',
'spikes',
'Testimonials',
'README.md',
'LICENSE.txt'
)
$ExcludeFiles = @(
'Install.ps1'
'Install.ps1',
'InstallModule.ps1',
'PublishToGallery.PS1'
)