|
| 1 | +# |
| 2 | +# Module manifest for module 'LearnPowerShell' |
| 3 | +# |
| 4 | +# Generated by: Jake Morrison |
| 5 | +# |
| 6 | +# Generated on: 06/13/22 |
| 7 | +# |
| 8 | + |
| 9 | +@{ |
| 10 | + |
| 11 | + # Script module or binary module file associated with this manifest. |
| 12 | + RootModule = 'LearnPowerShell.psm1' |
| 13 | + |
| 14 | + # Version number of this module. |
| 15 | + ModuleVersion = '0.7.0' |
| 16 | + |
| 17 | + # Supported PSEditions |
| 18 | + # CompatiblePSEditions = @() |
| 19 | + |
| 20 | + # ID used to uniquely identify this module |
| 21 | + GUID = '1240e1b2-fa3a-4617-98cc-25adec29389a' |
| 22 | + |
| 23 | + # Author of this module |
| 24 | + Author = 'Jake Morrison' |
| 25 | + |
| 26 | + # Company or vendor of this module |
| 27 | + CompanyName = 'TechThoughts' |
| 28 | + |
| 29 | + # Copyright statement for this module |
| 30 | + Copyright = '(c) Jake Morrison. All rights reserved.' |
| 31 | + |
| 32 | + # Description of the functionality provided by this module |
| 33 | + Description = 'Returns episode information from the Learn PowerShell series. Learn PowerShell in an operationally focused blog and video series. This module contains information about each episode.' |
| 34 | + |
| 35 | + # Minimum version of the PowerShell engine required by this module |
| 36 | + # PowerShellVersion = '' |
| 37 | + |
| 38 | + # Name of the PowerShell host required by this module |
| 39 | + # PowerShellHostName = '' |
| 40 | + |
| 41 | + # Minimum version of the PowerShell host required by this module |
| 42 | + # PowerShellHostVersion = '' |
| 43 | + |
| 44 | + # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. |
| 45 | + # DotNetFrameworkVersion = '' |
| 46 | + |
| 47 | + # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. |
| 48 | + # ClrVersion = '' |
| 49 | + |
| 50 | + # Processor architecture (None, X86, Amd64) required by this module |
| 51 | + # ProcessorArchitecture = '' |
| 52 | + |
| 53 | + # Modules that must be imported into the global environment prior to importing this module |
| 54 | + # RequiredModules = @() |
| 55 | + |
| 56 | + # Assemblies that must be loaded prior to importing this module |
| 57 | + # RequiredAssemblies = @() |
| 58 | + |
| 59 | + # Script files (.ps1) that are run in the caller's environment prior to importing this module. |
| 60 | + # ScriptsToProcess = @() |
| 61 | + |
| 62 | + # Type files (.ps1xml) to be loaded when importing this module |
| 63 | + # TypesToProcess = @() |
| 64 | + |
| 65 | + # Format files (.ps1xml) to be loaded when importing this module |
| 66 | + # FormatsToProcess = @() |
| 67 | + |
| 68 | + # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
| 69 | + # NestedModules = @() |
| 70 | + |
| 71 | + # 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. |
| 72 | + FunctionsToExport = @( |
| 73 | + 'Get-LearnPowerShellInfo' |
| 74 | + ) |
| 75 | + |
| 76 | + # 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. |
| 77 | + # CmdletsToExport = @() |
| 78 | + |
| 79 | + # Variables to export from this module |
| 80 | + # VariablesToExport = '*' |
| 81 | + |
| 82 | + # 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. |
| 83 | + # AliasesToExport = @() |
| 84 | + |
| 85 | + # DSC resources to export from this module |
| 86 | + # DscResourcesToExport = @() |
| 87 | + |
| 88 | + # List of all modules packaged with this module |
| 89 | + # ModuleList = @() |
| 90 | + |
| 91 | + # List of all files packaged with this module |
| 92 | + # FileList = @() |
| 93 | + |
| 94 | + # 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. |
| 95 | + PrivateData = @{ |
| 96 | + |
| 97 | + PSData = @{ |
| 98 | + |
| 99 | + # Tags applied to this module. These help with module discovery in online galleries. |
| 100 | + Tags = @( |
| 101 | + 'examples', |
| 102 | + 'howto', |
| 103 | + 'learn', |
| 104 | + 'learn-powershell', |
| 105 | + 'learn-powershell-series', |
| 106 | + 'learning-powershell', |
| 107 | + 'learningpowershell', |
| 108 | + 'learnpowershell', |
| 109 | + 'powershell', |
| 110 | + 'powershellcourse', |
| 111 | + 'powershell-course', |
| 112 | + 'powershellexamples' |
| 113 | + 'powershell-examples' |
| 114 | + 'powershell-training', |
| 115 | + 'powershelltraining', |
| 116 | + 'training', |
| 117 | + 'training-course' |
| 118 | + ) |
| 119 | + |
| 120 | + # A URL to the license for this module. |
| 121 | + # LicenseUri = '' |
| 122 | + |
| 123 | + # A URL to the main website for this project. |
| 124 | + ProjectUri = 'https://github.com/techthoughts2/Learn-PowerShell-Code-Examples' |
| 125 | + |
| 126 | + # A URL to an icon representing this module. |
| 127 | + # IconUri = '' |
| 128 | + |
| 129 | + # ReleaseNotes of this module |
| 130 | + # ReleaseNotes = '' |
| 131 | + |
| 132 | + # Prerelease string of this module |
| 133 | + # Prerelease = '' |
| 134 | + |
| 135 | + # Flag to indicate whether the module requires explicit user acceptance for install/update/save |
| 136 | + # RequireLicenseAcceptance = $false |
| 137 | + |
| 138 | + # External dependent modules of this module |
| 139 | + # ExternalModuleDependencies = @() |
| 140 | + |
| 141 | + } # End of PSData hashtable |
| 142 | + |
| 143 | + } # End of PrivateData hashtable |
| 144 | + |
| 145 | + # HelpInfo URI of this module |
| 146 | + # HelpInfoURI = '' |
| 147 | + |
| 148 | + # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
| 149 | + # DefaultCommandPrefix = '' |
| 150 | + |
| 151 | +} |
| 152 | + |
0 commit comments