TestPowerShellScript.psd1

#
# Module manifest for module 'TestPowerShellScript'
#

@{

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

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

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = 'f19df0c2-b8cb-4be3-824b-e84f6ec726ce'

# Author of this module
Author = 'Microsoft'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '(c) 2022 Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = @'
This script reads the Name and displays it along with the phrase Hello World.
'@


# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '7.2'

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.5'

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @(
    'Invoke-TestPowerShellScript.ps1'
)

# 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 = @(
    'Invoke-TestPowerShellScript'
)

# Cmdlets 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 cmdlets to export.
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = @()

# Aliases 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 aliases to export.
AliasesToExport = @()

# 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 = @{
        # Flag to indicate whether the module requires explicit user acceptance for install/update/save
        RequireLicenseAcceptance = $false

    } # End of PSData hashtable

} # End of PrivateData hashtable

}