Post_Deployment_check.psd1

@{

# Script module or binary module file associated with this manifest.
RootModule = 'loader.psm1'

# Version number of this module.
ModuleVersion = '1.0.5'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = '303fb5f1-a24f-4c28-8598-d5c6942035f9'

# Author of this module
Author = 'Markus Schanche'

# Copyright statement for this module
Copyright = '2019 Markus Schanche, MIT License. Use at own risk. No warranties'

# Description of the functionality provided by this module
Description = 'Personalized module for Post-Deployment checks.'

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        # Tags = @('Post_Deployment','PSEdition_Core','PSEdition_Desktop')

        # A URL to the license for this module.
        # LicenseUri = 'https://en.wikipedia.org/wiki/MIT_License'

    } # End of PSData hashtable

} # End of PrivateData hashtable

}