Skip to content

Commit cdfdb53

Browse files
fix(module): 🐛 update copyright year and adjust configuration settings
* Set `RefreshPSD1Only` to `false` for better module behavior. * Updated copyright year to 2026 in `FileInspectorX.psd1`.
1 parent f0c686e commit cdfdb53

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Module/Build/Build-Module.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Build-Module -ModuleName 'FileInspectorX' {
7979
DotSourceLibraries = $true
8080
NETSearchClass = 'FileInspectorX.PowerShell.CmdletGetFileInsight'
8181
NETBinaryModuleDocumentation = $true
82-
RefreshPSD1Only = $true
82+
RefreshPSD1Only = $false
8383
}
8484

8585
New-ConfigurationBuild @newConfigurationBuildSplat
@@ -88,6 +88,6 @@ Build-Module -ModuleName 'FileInspectorX' {
8888
New-ConfigurationArtefact -Type Packed -Enable -Path "$PSScriptRoot\..\Artefacts\Packed" -IncludeTagName -ArtefactName "FileInspectorX-PowerShellModule.<TagModuleVersionWithPreRelease>.zip" -ID 'ToGitHub'
8989

9090
# global options for publishing to github/psgallery
91-
#New-ConfigurationPublish -Type PowerShellGallery -FilePath 'C:\Support\Important\PowerShellGalleryAPI.txt' -Enabled:$true
92-
#New-ConfigurationPublish -Type GitHub -FilePath 'C:\Support\Important\GitHubAPI.txt' -UserName 'EvotecIT' -Enabled:$true -ID 'ToGitHub' -OverwriteTagName 'FileInspectorX-PowerShellModule.<TagModuleVersionWithPreRelease>'
91+
New-ConfigurationPublish -Type PowerShellGallery -FilePath 'C:\Support\Important\PowerShellGalleryAPI.txt' -Enabled:$true
92+
New-ConfigurationPublish -Type GitHub -FilePath 'C:\Support\Important\GitHubAPI.txt' -UserName 'EvotecIT' -Enabled:$true -ID 'ToGitHub' -OverwriteTagName 'FileInspectorX-PowerShellModule.<TagModuleVersionWithPreRelease>'
9393
}

Module/FileInspectorX.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
@{
1+
@{
22
AliasesToExport = @()
33
Author = 'Przemyslaw Klys'
44
CmdletsToExport = @('Get-FileInsight')
55
CompanyName = 'Evotec'
66
CompatiblePSEditions = @('Desktop', 'Core')
7-
Copyright = '(c) 2011 - 2025 Przemyslaw Klys @ Evotec. All rights reserved.'
7+
Copyright = '(c) 2011 - 2026 Przemyslaw Klys @ Evotec. All rights reserved.'
88
Description = 'FileInspectorX is PowerShell module that allows you to query files and folders for information. It supports multiple types of file queries and can be used to query local file systems, network shares.'
99
FunctionsToExport = @()
1010
GUID = 'bb5de776-1f68-4af0-8d68-5c0fa2ab3cf9'

0 commit comments

Comments
 (0)