Terminal.Gui.PowerShell.psd1 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #
  2. # Module manifest for module 'Terminal.Gui.PowerShell'
  3. #
  4. # Generated by: Brandon Thetford (GitHub @dodexahedron)
  5. #
  6. # Generated on: 4/19/2024
  7. #
  8. @{
  9. # Script module or binary module file associated with this manifest.
  10. RootModule = 'Terminal.Gui.PowerShell.psm1'
  11. # Version number of this module.
  12. ModuleVersion = '1.0.0'
  13. # Supported PSEditions
  14. CompatiblePSEditions = @('Core')
  15. # ID used to uniquely identify this module
  16. GUID = 'f28198f9-cf4b-4ab0-9f94-aef5616b7989'
  17. # Author of this module
  18. Author = 'Brandon Thetford (GitHub @dodexahedron)'
  19. # Company or vendor of this module
  20. CompanyName = 'The Terminal.Gui Project'
  21. # Copyright statement for this module
  22. Copyright = 'Brandon Thetford (GitHub @dodexahedron), provided to the Terminal.Gui project and you under the MIT license'
  23. # Description of the functionality provided by this module
  24. Description = 'Utilities for development-time operations on and management of components of Terminal.Gui code and other assets.'
  25. # Minimum version of the PowerShell engine required by this module
  26. PowerShellVersion = '7.4.0'
  27. # Name of the PowerShell "host" subsystem (not system host name). Helps ensure that we know what to expect from the environment.
  28. PowerShellHostName = 'ConsoleHost'
  29. # Minimum version of the PowerShell host required by this module
  30. PowerShellHostVersion = '7.4.0'
  31. # Processor architecture (None, MSIL, X86, IA64, Amd64, Arm, or an empty string) required by this module. One value only.
  32. # Set to AMD64 here because development on Terminal.Gui isn't really supported on anything else.
  33. # Has nothing to do with runtime use of Terminal.Gui.
  34. ProcessorArchitecture = 'AMD64'
  35. # Modules that must be imported into the global environment prior to importing this module
  36. RequiredModules = @('Microsoft.PowerShell.Utility','Microsoft.PowerShell.Management','PSReadLine')
  37. # Assemblies that must be loaded prior to importing this module
  38. # RequiredAssemblies = @()
  39. # Script files (.ps1) that are run in the caller's environment prior to importing this module.
  40. # ScriptsToProcess = @()
  41. # Type files (.ps1xml) to be loaded when importing this module
  42. # TypesToProcess = @()
  43. # Format files (.ps1xml) to be loaded when importing this module
  44. # FormatsToProcess = @()
  45. # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
  46. NestedModules = @('./Terminal.Gui.PowerShell.Analyzers.psd1')
  47. # 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.
  48. FunctionsToExport = @('Build-Analyzers','Close-Solution','Open-Solution','Reset-PowerShellEnvironment','Set-PowerShellEnvironment')
  49. #FunctionsToExport = @('*')
  50. # 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.
  51. CmdletsToExport = @()
  52. # Variables to export from this module
  53. VariablesToExport = @()
  54. # 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.
  55. AliasesToExport = @()
  56. # List of all modules packaged with this module
  57. # ModuleList = @()
  58. # List of all files packaged with this module
  59. # FileList = @()
  60. # 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.
  61. PrivateData = @{
  62. PSData = @{
  63. # Tags applied to this module. These help with module discovery in online galleries.
  64. # Tags = @()
  65. # A URL to the license for this module.
  66. LicenseUri = 'https://github.com/gui-cs/Terminal.Gui/tree/v2_develop/Scripts/COPYRIGHT'
  67. # A URL to the main website for this project.
  68. ProjectUri = 'https://github.com/gui-cs/Terminal.Gui'
  69. # A URL to an icon representing this module.
  70. # IconUri = ''
  71. # ReleaseNotes of this module
  72. ReleaseNotes = 'See change history and releases for Terminal.Gui on GitHub'
  73. # Prerelease string of this module
  74. # Prerelease = ''
  75. # Flag to indicate whether the module requires explicit user acceptance for install/update/save
  76. RequireLicenseAcceptance = $false
  77. # External dependent modules of this module
  78. # ExternalModuleDependencies = @()
  79. } # End of PSData hashtable
  80. } # End of PrivateData hashtable
  81. # HelpInfo URI of this module
  82. # HelpInfoURI = ''
  83. # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
  84. # DefaultCommandPrefix = ''
  85. }