Print-HelloWorld2.psd1
@{ # Script module or binary module file associated with this manifest RootModule = 'Print-HelloWorld2.psm1' # Version number of this module. ModuleVersion = '1.0.4' # Company or vendor of this module CompanyName = 'JetStream, Inc.' # ID used to uniquely identify this module GUID = 'f4d61742-372d-4b9a-83ea-798927d01520' # Author of this module Author = "JetStream" # 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' ScriptsToProcess = @('./ScriptsToProcess/Resolve-Print.ps1') # 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 = '' } |