GinShell.psd1
|
@{ RootModule = 'GinShell.psm1' ModuleVersion = '0.0.1' GUID = '5fdcfa1b-ff45-45b5-a169-223fa38df1db' Author = 'Abdur Rashid Mondal' CompanyName = 'Ginni System Limited' Copyright = '(c) Abdur Rashid Mondal. All rights reserved.' Description = 'GinShell rollup module for CloudInfra Management. Includes submodules for Azure, GoDaddy DNS, Windows domain, utilities, and structured logging.' # Submodules are imported by GinShell.psm1 (not RequiredModules) # because PSModulePath must be set first for local dev discovery. # RequiredModules = @() FunctionsToExport = '*' CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Cloud', 'Azure', 'GoDaddy', 'DNS', 'Windows', 'Logging', 'Infrastructure') ReleaseNotes = 'v2.0.0 - Restructured into independent submodules (GinShell.Logging, GinShell.Azure, GinShell.GoDaddy, GinShell.Windows, GinShell.Utilities). Dropped DefaultCommandPrefix in favor of explicit Gs-prefixed function names.' } } } |