You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
4.3 KiB

  1. @{
  2. # Script module or binary module file associated with this manifest.
  3. RootModule = 'ICSharpCode.Decompiler.PowerShell.dll'
  4. # Version number of this module.
  5. ModuleVersion = '8.0.0.0'
  6. # Supported PSEditions
  7. # CompatiblePSEditions = @()
  8. # ID used to uniquely identify this module
  9. GUID = '198b4312-cbe7-417e-81a7-1aaff467ef06'
  10. # Author of this module
  11. Author = 'ILSpy Contributors'
  12. # Company or vendor of this module
  13. CompanyName = 'ic#code'
  14. # Copyright statement for this module
  15. Copyright = 'Copyright 2011-2023 AlphaSierraPapa'
  16. # Description of the functionality provided by this module
  17. Description = 'PowerShell front-end for ILSpy'
  18. # Minimum version of the PowerShell engine required by this module
  19. # PowerShellVersion = ''
  20. # Name of the PowerShell host required by this module
  21. # PowerShellHostName = ''
  22. # Minimum version of the PowerShell host required by this module
  23. # PowerShellHostVersion = ''
  24. # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
  25. # DotNetFrameworkVersion = ''
  26. # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
  27. # ClrVersion = ''
  28. # Processor architecture (None, X86, Amd64) required by this module
  29. # ProcessorArchitecture = ''
  30. # Modules that must be imported into the global environment prior to importing this module
  31. # RequiredModules = @()
  32. # Assemblies that must be loaded prior to importing this module
  33. # RequiredAssemblies = @()
  34. # Script files (.ps1) that are run in the caller's environment prior to importing this module.
  35. # ScriptsToProcess = @()
  36. # Type files (.ps1xml) to be loaded when importing this module
  37. # TypesToProcess = @()
  38. # Format files (.ps1xml) to be loaded when importing this module
  39. # FormatsToProcess = @()
  40. # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
  41. # NestedModules = @()
  42. # 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.
  43. FunctionsToExport = @()
  44. # 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.
  45. CmdletsToExport = @(
  46. 'Get-DecompiledProject',
  47. 'Get-DecompiledSource',
  48. 'Get-DecompiledTypes',
  49. 'Get-Decompiler',
  50. 'Get-DecompilerVersion',
  51. 'Get-TargetFramework'
  52. )
  53. # Variables to export from this module
  54. VariablesToExport = '*'
  55. # 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.
  56. AliasesToExport = @()
  57. # DSC resources to export from this module
  58. # DscResourcesToExport = @()
  59. # List of all modules packaged with this module
  60. # ModuleList = @()
  61. # List of all files packaged with this module
  62. # FileList = @()
  63. # 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.
  64. PrivateData = @{
  65. PSData = @{
  66. # Tags applied to this module. These help with module discovery in online galleries.
  67. # Tags = @()
  68. # A URL to the license for this module.
  69. # LicenseUri = ''
  70. # A URL to the main website for this project.
  71. ProjectUri = 'https://github.com/icsharpcode/ILSpy'
  72. # A URL to an icon representing this module.
  73. # IconUri = ''
  74. # ReleaseNotes of this module
  75. # ReleaseNotes = ''
  76. # Prerelease string of this module
  77. # Prerelease = ''
  78. # Flag to indicate whether the module requires explicit user acceptance for install/update/save
  79. # RequireLicenseAcceptance = $false
  80. # External dependent modules of this module
  81. # ExternalModuleDependencies = @()
  82. } # End of PSData hashtable
  83. } # End of PrivateData hashtable
  84. # HelpInfo URI of this module
  85. # HelpInfoURI = ''
  86. # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
  87. # DefaultCommandPrefix = ''
  88. }