From f22503003e47992a6d80f78a03bb5870ce5ca6eb Mon Sep 17 00:00:00 2001 From: Staffan Gustafsson Date: Sat, 9 Mar 2019 22:31:16 +0100 Subject: [PATCH] Adding empty CmdletsToExport to module manifest This is done to not trigger unnecessary module loads during command auto-discovery. --- WindowsCompatibility/WindowsCompatibility.psd1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WindowsCompatibility/WindowsCompatibility.psd1 b/WindowsCompatibility/WindowsCompatibility.psd1 index a3dcf72..5358945 100644 --- a/WindowsCompatibility/WindowsCompatibility.psd1 +++ b/WindowsCompatibility/WindowsCompatibility.psd1 @@ -7,7 +7,7 @@ @{ RootModule = 'WindowsCompatibility.psm1' -ModuleVersion = '1.0.0' +ModuleVersion = '1.0.1' CompatiblePSEditions = @('Core') GUID = '9d427bc5-2ae1-4806-b9d1-2ae62461767e' Author = 'PowerShell' @@ -31,6 +31,7 @@ FunctionsToExport = @( 'Add-WindowsPSModulePath' ) AliasesToExport = @('Add-WinPSModulePath') +CmdletsToExport = @() PrivateData = @{ PSData = @{ Tags = @('WindowsPowerShell', 'Compatibility', 'Core')