diff --git a/PSQualityCheck.Functions.psd1 b/PSQualityCheck.Functions.psd1 index a17cf81..dcce0c3 100644 --- a/PSQualityCheck.Functions.psd1 +++ b/PSQualityCheck.Functions.psd1 @@ -4,7 +4,7 @@ RootModule = 'PSQualityCheck.Functions.psm1' # Version number of this module. - ModuleVersion = '1.0.6' + ModuleVersion = '1.0.7' # Supported PSEditions # CompatiblePSEditions = @() @@ -22,7 +22,7 @@ Copyright = '(c) Andrew Davidson. All rights reserved.' # Description of the functionality provided by this module - # Description = '' + Description = 'This module contains supporting functions for PSQualityCheck.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.0' @@ -83,13 +83,13 @@ ) # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. - CmdletsToExport = '*' + CmdletsToExport = @() # Variables to export from this module - VariablesToExport = '*' + VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. - AliasesToExport = '*' + AliasesToExport = @() # DSC resources to export from this module # DscResourcesToExport = @() @@ -106,13 +106,13 @@ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - # Tags = @() + Tags = @('powershell', 'powershell-module', 'tests', 'quality', 'quality-check', 'pester', 'pester-tests') # A URL to the license for this module. - # LicenseUri = '' + LicenseUri = 'https://github.com/andrewrdavidson/PSQualityCheck/blob/main/LICENSE' # A URL to the main website for this project. - # ProjectUri = '' + ProjectUri = 'https://github.com/andrewrdavidson/PSQualityCheck' # A URL to an icon representing this module. # IconUri = '' @@ -134,7 +134,7 @@ } # End of PrivateData hashtable # HelpInfo URI of this module - # HelpInfoURI = '' + HelpInfoURI = 'https://github.com/andrewrdavidson/PSQualityCheck/wiki' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' diff --git a/PSQualityCheck.psd1 b/PSQualityCheck.psd1 index c955eea..6c70565 100644 --- a/PSQualityCheck.psd1 +++ b/PSQualityCheck.psd1 @@ -4,7 +4,7 @@ RootModule = 'PSQualityCheck.psm1' # Version number of this module. - ModuleVersion = '1.0.6' + ModuleVersion = '1.0.7' # Supported PSEditions # CompatiblePSEditions = @() @@ -22,7 +22,7 @@ Copyright = '(c) Andrew Davidson. All rights reserved.' # Description of the functionality provided by this module - # Description = '' + Description = 'This module interfaces to a set of Pester tests that enable the enforcement of quality controls rules on PowerShell scripts and modules.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.0' @@ -66,13 +66,13 @@ FunctionsToExport = 'Invoke-PSQualityCheck' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. - CmdletsToExport = '*' + CmdletsToExport = @() # Variables to export from this module - VariablesToExport = '*' + VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. - AliasesToExport = '*' + AliasesToExport = @() # DSC resources to export from this module # DscResourcesToExport = @() @@ -89,13 +89,13 @@ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - # Tags = @() + Tags = @('powershell', 'powershell-module', 'tests', 'quality', 'quality-check', 'pester', 'pester-tests') # A URL to the license for this module. - # LicenseUri = '' + LicenseUri = 'https://github.com/andrewrdavidson/PSQualityCheck/blob/main/LICENSE' # A URL to the main website for this project. - # ProjectUri = '' + ProjectUri = 'https://github.com/andrewrdavidson/PSQualityCheck' # A URL to an icon representing this module. # IconUri = '' @@ -117,10 +117,9 @@ } # End of PrivateData hashtable # HelpInfo URI of this module - # HelpInfoURI = '' + HelpInfoURI = 'https://github.com/andrewrdavidson/PSQualityCheck/wiki' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' - }