-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConvertHtmlTable.psd1
More file actions
35 lines (29 loc) · 908 Bytes
/
ConvertHtmlTable.psd1
File metadata and controls
35 lines (29 loc) · 908 Bytes
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
@{
ModuleVersion = '1.0.0'
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
Author = 'Merit IT'
CompanyName = 'Merit IT LLC'
Copyright = '(c) 2026. All rights reserved.'
Description = 'A PowerShell module to convert objects to HTML tables.'
PowerShellVersion = '5.1'
# Module to process
RootModule = 'ConvertHtmlTable.psm1'
# Functions to export
FunctionsToExport = @('ConvertTo-ObjectToHtmlTable')
# Cmdlets to export
CmdletsToExport = @()
# Variables to export
VariablesToExport = @()
# Aliases to export
AliasesToExport = @()
# Private data
PrivateData = @{
PSData = @{
ProjectUri = 'https://github.com/Merit-IT/HTMLTableModule'
LicenseUri = 'https://github.com/Merit-IT/HTMLTableModule/LICENSE'
ReleaseNotes = @'
1.0.0 - Initial release
'@
}
}
}