diff --git a/ImportExcel.psd1 b/ImportExcel.psd1 index c811a85..009087f 100644 --- a/ImportExcel.psd1 +++ b/ImportExcel.psd1 @@ -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' diff --git a/Install.ps1 b/Install.ps1 index ad4284a..a733000 100644 --- a/Install.ps1 +++ b/Install.ps1 @@ -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' )