SRxExplorer.psd1
@{ # The module version should be SemVer.org compatible ModuleVersion = '2.1.7' # PrivateData is where all third-party metadata goes PrivateData = @{ # PrivateData.PSData is the PowerShell Gallery data PSData = @{ # Prerelease string should be here, so we can set it Prerelease = '' # Release Notes have to be here, so we can update them ReleaseNotes = ' Initial release, including lots of fixed bugs and a few features ... - ' # Tags applied to this module. These help with module discovery in online galleries. Tags = 'SharePoint','PnP','Provisioning','Library' # A URL to the license for this module. LicenseUri = 'https://github.com/nmukhin2251/SRx/blob/master/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/nmukhin2251/SRx' # A URL to an icon representing this module. IconUri = 'https://github.com/nmukhin2251/SRx/blob/resources/ModuleBuilder.png?raw=true' } # End of PSData } # End of PrivateData # The main script module that is automatically loaded as part of this module RootModule = 'SRxExplorer.psm1' # Modules that must be imported into the global environment prior to importing this module --- @('Configuration') RequiredModules = @() # Always define FunctionsToExport as an empty @() which will be replaced on build FunctionsToExport = @('CustomizationsReader','Explorer','New-Runspaces','New-SRxPipeClient','New-SRxPipeServer','Receive-StringFromPipeServer','Request-SRxPipeServer','Send-StringToPipeServer') AliasesToExport = @() # ID used to uniquely identify this module GUID = '3325ad56-8f64-432f-8da7-87aaf7a34653' Description = 'A module for provisioning SharePoint O365 sites with PnP PowerShell cmdlets' # Common stuff for all our modules: CompanyName = 'nmukhin2251' Author = 'Nik Mukhin' Copyright = "Copyright 2023 Nik Mukhin" # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' CompatiblePSEditions = @('Core','Desktop') } |