SMAAuthoringToolkit.psd1
# # Module manifest for module 'SMAAuthoringToolkit' @{ # Script module or binary module file associated with this manifest. RootModule = 'SMAAuthoringToolkit.psm1' # Version number of this module. ModuleVersion = '1.2' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '3.0' # ID used to uniquely identify this module GUID = 'c3c32a7b-873f-455a-b204-6608f36017f9' # Author of this module Author = 'SMATeam' # Company or vendor of this module CompanyName = 'Microsoft' # Copyright statement for this module Copyright = '(c) 2016 Microsoft. All rights reserved.' # Description of the functionality provided by this module Description = 'Provides cmdlets to make authoring of Service Management Automation runbooks in local PowerShell easier.' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess NestedModules = @('.\SMAAuthoringToolkitInner.psm1') # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @(".\SMAISEAddon\Microsoft.SystemCenter.ServiceManagementAutomation.ISEAddOn.dll") # Functions to export from this module FunctionsToExport = @("Get-AutomationVariable", "Get-AutomationPSCredential", "Set-AutomationVariable", "Get-SMAAuthoringToolkitLocalAsset", "Get-SMAAuthoringToolkitConfiguration", "Install-SMAIseAddOn", "Uninstall-SMAIseAddOn") # 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 = @('ServiceManagementAutomation', 'SMA') # A URL to the license for this module. LicenseUri = 'https://github.com/SCSMA/PoweShell-ISE-Addon-License/blob/master/License.txt ' # A URL to the main website for this project. ProjectUri = 'https://github.com/SCSMA/sma-powershell-ise-addon' # ReleaseNotes of this module ReleaseNotes = 'For installation instructions please see https://github.com/SCSMA/sma-powershell-ise-addon' } # End of PSData hashtable } # End of PrivateData hashtable } |