forked from iainbrighton/PScribo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPScribo.psd1
36 lines (36 loc) · 1.39 KB
/
PScribo.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
@{
RootModule = 'PScribo.psm1';
ModuleVersion = '0.7.23';
GUID = '058eab05-b7bc-4f8b-a2d1-737cc664b12b';
Author = 'Iain Brighton';
CompanyName = 'Virtual Engine';
Copyright = '(c) 2018 Iain Brighton. All rights reserved.';
Description = 'PScribo documentation Powershell module/framework.';
PowerShellVersion = '3.0';
FunctionsToExport = @(
'BlankLine',
'Document',
'DocumentOption',
'Export-Document',
'LineBreak',
'PageBreak',
'Paragraph',
'Section',
'Style',
'Set-Style',
'Table',
'TableStyle',
'TOC'
);
AliasesToExport = @(
'GlobalOption'
);
PrivateData = @{
PSData = @{
Tags = @('Powershell','PScribo','Documentation','Framework','VirtualEngine')
LicenseUri = 'https://raw.githubusercontent.com/iainbrighton/PScribo/master/LICENSE';
ProjectUri = 'http://github.com/iainbrighton/PScribo'
# IconUri = '';
} # End of PSData hashtable
} # End of PrivateData hashtable
}