PnP.PwerShell.psd1

@{
    RootModule        = 'PnP.PwerShell.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '49381c2c-59e5-4bea-bdb3-1ad009bf6498'
    Author            = 'Drew Collins'
    CompanyName       = 'Drew Collins'
    Copyright         = '(c) Drew Collins. All rights reserved.'
    Description       = 'Minimal core helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PnPPwerShellStatus', 'Initialize-PnPPwerShell')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}