SRxCore.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             = 'SRxCore.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      = @('Connect-SRxProvisioningDatabase_JSON','Connect-SRxSPOService','Convert-SRxFromXML','Convert-SRxURL_JSON','Get-Master','Get-SRxConnection','Get-SRxCustomizationWriter','Get-SRxCustomPropertyValueByKey_JSON','Get-SRxHostingTerm','Get-SRxIsConnected','Get-SRxRemoteCommand','Get-SRxStoredCredential','Get-SRxTermByCustomProperty_JSON','Get-SRxTermsWithCustomProperty','Get-SRxWorkFolder','Hide-SRxWindow','Initialize-SRxEnv','New-SRxReport','New-SRxStoredCredential','Read-SRxPipeline','Read-SRxPipelineValue','Remove-SRxStringSpecialCharacter','Resolve-SRxPropertiesArray_JSON','Resolve-SRxTermsArray_JSON','Save-SRxConfig','Save-SRxProfile','Set-SRxCommand','Set-SRxCustomProperty','Set-SRxPipeline','Set-SRxTermDesign','Show-SRxNotImplementedWarning','Show-SRxProductionWarning','Show-SRxShell','Show-SRxSOPTitle','Show-SRxWindow','Start-Rule','Start-Ruleset','Start-SOP','Start-SRxShell','Start-SRxSysTray','Test-SRx','Test-SRxAllowedForRecycleBinDeletion','Test-SRxIsStakeHolder','Test-SRxProvisioningDatabase_JSON','Update-SRxTermCustomProperty','Write-SRx','Write-SRxConsole','Write-SRxMenu')
    AliasesToExport        = @()

    # ID used to uniquely identify this module
    GUID                   = '2325ad56-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')
}