Advertisement
amnich

TestMod.psd1

May 29th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Module manifest for module 'testmod'
  2. # Generated by: Mnich
  3. # Generated on: 28.05.2017
  4. @{
  5.  
  6. # Script module or binary module file associated with this manifest.
  7. RootModule = 'TestMod.psm1'
  8.  
  9. # Version number of this module.
  10. ModuleVersion = '1.0'
  11.  
  12. # Supported PSEditions
  13. # CompatiblePSEditions = @()
  14.  
  15. # ID used to uniquely identify this module
  16. GUID = 'b7d1f368-8398-4561-9bc0-752bf73b1b68'
  17.  
  18. # Author of this module
  19. Author = 'Mnich'
  20.  
  21. # Company or vendor of this module
  22. CompanyName = 'Company'
  23.  
  24. # Copyright statement for this module
  25. Copyright = '(c) 2017 Company. All rights reserved.'
  26.  
  27. # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
  28. FunctionsToExport = @('test-function')
  29.  
  30. # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
  31. CmdletsToExport = @()
  32.  
  33. # Variables to export from this module
  34. VariablesToExport = @()
  35.  
  36. # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
  37. AliasesToExport = @()
  38.  
  39. # 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.
  40. PrivateData = @{
  41.  
  42.     PSData = @{
  43.  
  44.     } # End of PSData hashtable
  45.  
  46. } # End of PrivateData hashtable
  47.  
  48. # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
  49. DefaultCommandPrefix = '123'
  50.  
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement