cliHelper.xconvert.psd1
# # Module manifest for module 'cliHelper.xconvert' # # Generated by: Alain Herve # # Generated on: 10/04/2024 # @{ RootModule = 'cliHelper.xconvert.psm1' ModuleVersion = '0.1.1' GUID = 'd3b80f22-9f1d-3038-86ff-c4dd5ba02d7a' Author = 'alain' CompanyName = 'alainQtec' Copyright = "Alain Herve (c) 2024. All rights reserved." Description = 'A module to convert stuff.' PowerShellVersion = '3.0' # Name of the PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. ClrVersion = '2.0.50727' # Processor architecture (None, X86, Amd64) required by this module ProcessorArchitecture = 'None' RequiredAssemblies = @() ScriptsToProcess = @() TypesToProcess = @() FormatsToProcess = @() NestedModules = @() FunctionsToExport = @( 'New-Converter' ) RequiredModules = @() CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module # FileList = @() # 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. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'convert', 'xconvert' LicenseUri = 'https://alain.mit-license.org/' ProjectUri = 'https://github.com/alainQtec/cliHelper.xconvert' IconUri = 'https://raw.githubusercontent.com/alainQtec/cliHelper.xconvert/refs/heads/main/docs/img/favicons/favicon-150x150.png' ReleaseNotes = " # Changelog - fixed LocalisedData not being found - more in utility class *** ## Manual install guide 1. [Click here](https://github.com/alainQtec/cliHelper.xconvert/releases/download/v<versionToDeploy>/cliHelper.xconvert.zip) to download the *PsImport.zip* file attached to the release. 2. **If on Windows**: Right-click the downloaded zip, select Properties, then unblock the file. > _This is to prevent having to unblock each file individually after unzipping._ 3. Unzip the archive. 4. (Optional) Place the module folder somewhere in your `PSModulePath`. > _You can view the paths listed by running the environment variable `$Env:PSModulePath`_ 5. Import the module, using the full path to the PSD1 file in place of `cliHelper.xconvert` if the unzipped module folder is not in your `PSModulePath`: ```powershell # In Env:PSModulePath Import-Module cliHelper.xconvert # Otherwise, provide the path to the manifest: Import-Module -Path Path\to\cliHelper.xconvert\<versionToDeploy>\cliHelper.xconvert.psd1 ``` " } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |