Terminal.Gui.PowerShell.Core.psd1 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. # No root module because this is a manifest module.
  10. RootModule = ''
  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 = 'c661fb12-70ae-4a9e-a95c-786a7980681d'
  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 = ''
  35. # Modules that must be imported into the global environment prior to importing this module
  36. RequiredModules = @(
  37. @{
  38. ModuleName='Microsoft.PowerShell.Utility'
  39. ModuleVersion='7.0.0'
  40. },
  41. @{
  42. ModuleName='Microsoft.PowerShell.Management'
  43. ModuleVersion='7.0.0'
  44. },
  45. @{
  46. ModuleName='PSReadLine'
  47. ModuleVersion='2.3.4'
  48. }
  49. )
  50. # Assemblies that must be loaded prior to importing this module
  51. # RequiredAssemblies = @()
  52. # Script files (.ps1) that are run in the caller's environment prior to importing this module.
  53. # ScriptsToProcess = @()
  54. # Type files (.ps1xml) to be loaded when importing this module
  55. # TypesToProcess = @()
  56. # Format files (.ps1xml) to be loaded when importing this module
  57. # FormatsToProcess = @()
  58. # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
  59. NestedModules = @('./Terminal.Gui.PowerShell.Core.psm1')
  60. # Functions to export from this module.
  61. FunctionsToExport = @('Open-Solution','Close-Solution')
  62. # 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.
  63. CmdletsToExport = @()
  64. # Variables to export from this module
  65. VariablesToExport = @()
  66. # 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.
  67. AliasesToExport = @()
  68. # List of all modules packaged with this module
  69. # ModuleList = @()
  70. # List of all files packaged with this module
  71. # FileList = @()
  72. # 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.
  73. PrivateData = @{
  74. PSData = @{
  75. # Tags applied to this module. These help with module discovery in online galleries.
  76. # Tags = @()
  77. # A URL to the license for this module.
  78. LicenseUri = 'https://github.com/gui-cs/Terminal.Gui/tree/v2_develop/Scripts/COPYRIGHT'
  79. # A URL to the main website for this project.
  80. ProjectUri = 'https://github.com/gui-cs/Terminal.Gui'
  81. # A URL to an icon representing this module.
  82. # IconUri = ''
  83. # ReleaseNotes of this module
  84. ReleaseNotes = 'See change history and releases for Terminal.Gui on GitHub'
  85. # Prerelease string of this module
  86. # Prerelease = ''
  87. # Flag to indicate whether the module requires explicit user acceptance for install/update/save
  88. RequireLicenseAcceptance = $false
  89. # External dependent modules of this module
  90. # ExternalModuleDependencies = @()
  91. } # End of PSData hashtable
  92. } # End of PrivateData hashtable
  93. # HelpInfo URI of this module
  94. # HelpInfoURI = ''
  95. # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
  96. # DefaultCommandPrefix = ''
  97. }