-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSCTools.psd1
More file actions
39 lines (36 loc) · 1.29 KB
/
DSCTools.psd1
File metadata and controls
39 lines (36 loc) · 1.29 KB
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 = 'DSCTools.psm1'
ModuleVersion = '1.8.0.31'
GUID = 'ef697881-00e6-48ce-a60e-e6f4cd248d2b'
Author = 'Daniel Scott-Raynsford'
CompanyName = ''
Copyright = '(c) 2017 Daniel Scott-Raynsford. All rights reserved.'
Description = 'This module provides miscellaneous helper functions for setting up and using Powershell DSC.'
PowerShellVersion = '4.0'
ProcessorArchitecture = 'None'
# RequiredModules = @()
RequiredAssemblies = @()
ScriptsToProcess = @()
TypesToProcess = @()
FormatsToProcess = @()
# NestedModules = @()
FunctionsToExport = '*'
# CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
# DscResourcesToExport = @()
# ModuleList = @()
FileList = @()
PrivateData = @{
PSData = @{
Tags = @('DSCTools','DesiredStateConfiguration','DSC')
# LicenseUri = https://github.com/PlagueHO/DSCTools/blob/master/LICENSE
ProjectUri = 'https://github.com/PlagueHO/DSCTools'
# IconUri = ''
# ReleaseNotes = ''
# ExternalModuleDependencies = ''
} # End of PSData hashtable
} # End of PrivateData hashtable
HelpInfoURI = 'https://github.com/PlagueHO/DSCTools/blob/master/README.md'
# DefaultCommandPrefix = ''
}