-
Notifications
You must be signed in to change notification settings - Fork 1
/
MyNumber.psd1
36 lines (29 loc) · 2.78 KB
/
MyNumber.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Module manifest for module 'MyNumber'
#
@{
RootModule = 'MyNumber.psm1'
ModuleVersion = '1.4.1'
CompatiblePSEditions = @('Desktop', 'Core')
GUID = 'a89d3d2b-3e70-4f24-98e1-debd98ec289c'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2017-2023 JDH Information Technology Solutions, Inc.'
Description = 'A demonstration class-based PowerShell module that creates a number object. This module is intended as a teaching tool for scripting with PowerShell and using PowerShell classes.'
PowerShellVersion = '5.1'
FunctionsToExport = 'Convert-MyNumber', 'New-MyNumber', 'Set-MyNumber'
FormatsToProcess = 'formats\mynumber.format.ps1xml'
TypesToProcess = 'types\mynumber.types.ps1xml'
CmdletsToExport = ''
# VariablesToExport = '*'
AliasesToExport = ''
PrivateData = @{
PSData = @{
Tags = @('classes', 'math', 'tutorial', 'demo')
LicenseUri = 'https://github.com/jdhitsolutions/MyNumber/blob/master/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/MyNumber'
# IconUri = ''
# ReleaseNotes = ''
} # End of PSData hashtable
} # End of PrivateData hashtable
}