64SE.psd1
@{ # Module manifest for module '64SE' # Script module or binary module file associated with this manifest. RootModule = '64SE.psm1' # Version number of this module. ModuleVersion = '1.0.0' # Supported PSEditions CompatiblePSEditions = @('Desktop', 'Core') # ID used to uniquely identify this module GUID = '4a95e4d7-fc7c-437d-a8b1-cf1c2737f0a4' # Author of this module Author = 'Kalichuza' # Company or vendor of this module CompanyName = 'Kalichuza' # Copyright statement for this module Copyright = '(c) 2024 Kalichuza. All rights reserved.' # Description of the functionality provided by this module Description = '64SE is a PowerShell module for encoding and decoding strings and files using Base64.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @() # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess NestedModules = @() # Functions to export from this module FunctionsToExport = @('Encode-StringToBase64', 'Decode-Base64ToString', 'Encode-FileToBase64', 'Decode-Base64ToFile') # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # List of all modules packaged with this module ModuleList = @() # List of all files packaged with this module FileList = @('64SE.psm1', 'en-US/about_64SE.help.txt', 'en-US/Encode-StringToBase64.help.xml', 'en-US/Decode-Base64ToString.help.xml', 'en-US/Encode-FileToBase64.help.xml', 'en-US/Decode-Base64ToFile.help.xml', 'README.md') # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ # A string containing the license for this module LicenseUri = 'https://www.gnu.org/licenses/gpl-3.0.txt' # A URL to the online help for this module HelpUri = 'https://github.com/kalichuza/64SE' # Release Notes of this module ReleaseNotes = 'Initial release of the 64SE module.' } # HelpInfo URI of this module HelpInfoUri = 'https://github.com/kalichuza/64SE' } |