forked from dsccommunity/DscWorkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDscWorkshop.psd1
26 lines (24 loc) · 997 Bytes
/
DscWorkshop.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
@{
RootModule = 'DscWorkshop.psm1'
ModuleVersion = '0.4'
GUID = '63e8bf79-62d3-4249-8fe6-9a766fbe8481'
Author = 'DSC Community'
CompanyName = 'DSC Community'
Copyright = 'Copyright the DSC Community contributors. All rights reserved.'
Description = 'DSC composite resource for https://github.com/dsccommunity/DscWorkshop'
PowerShellVersion = '5.1'
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
PrivateData = @{
PSData = @{
Prerelease = ''
Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResource')
LicenseUri = 'https://github.com/dsccommunity/DscWorkshop/blob/main/LICENSE'
ProjectUri = 'https://github.com/dsccommunity/DscWorkshop'
IconUri = 'https://dsccommunity.org/images/DSC_Logo_300p.png'
ReleaseNotes = ''
}
}
}