ModuleScaffolding.psd1
# # Module manifest for module 'ModuleScaffolding' # # Generated by: paul # # Generated on: 5/4/2016 # @{ # Script module or binary module file associated with this manifest. RootModule = 'ModuleScaffolding.psm1' # Version number of this module. ModuleVersion = '1.0' # ID used to uniquely identify this module GUID = 'da121c30-7d71-4602-a0ac-7e55a4cba539' # Author of this module Author = 'Paul H Cassidy' # Company or vendor of this module CompanyName = 'Warrior IT Servives' # Copyright statement for this module Copyright = '(c) 2016 paul. All rights reserved.' # Description of the functionality provided by this module Description = 'Create Directory Tree and basic files for a new module' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '3.0' # 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 = @() # A URL to the license for this module. LicenseUri = 'http://www.gnu.org/licenses/gpl.html' # A URL to the main website for this project. ProjectUri = 'https://github.com/qawarrior/ModuleScaffolding.git' } # End of PSData hashtable } # End of PrivateData hashtable } |