Test.HelloWorld.psd1

@{

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

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

# Company or vendor of this module
CompanyName = 'JetStream Software, Inc.'

# ID used to uniquely identify this module
GUID = 'f4d61742-372d-4b9e-83ea-798927d02526'

# Author of this module
Author = "Raju Chakraborty"

# Copyright statement for this module
Copyright = 'Copyright (c) 2021 JetStream Software Inc. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Sample Hello World application'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()

# Functions to export from this module
FunctionsToExport = @('Write-HelloWorld')

# Cmdlets to export from this module
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = ''

# Aliases to export from this module
AliasesToExport = ''

}