BotCommands/BotCommands.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'BotCommands.psm1' # Version number of this module. ModuleVersion = '1.0' # ID used to uniquely identify this module GUID = 'afd46037-6ef8-43db-8b32-a2e774dd7811' # The author of this module. Author = 'Joel Bennett' # The company or vendor for this module. CompanyName = 'Http://HuddledMasses.org' # Copyright statement for this module Copyright = '(c) 2014 Joel Bennett' # Description of the functionality provided by this module Description = 'Provides core IRC-related commands for IRC bots' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() # Functions to export from this module FunctionsToExport = '*-*' # Cmdlets to export from this module CmdletsToExport = '*' # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module AliasesToExport = '*' } |