25 lines
697 B
PowerShell
25 lines
697 B
PowerShell
@{
|
|
RootModule = "Merge-DSCConfigurationData.psm1"
|
|
ModuleVersion = "0.1.0"
|
|
GUID = "c1c7e70d-9049-4eaa-a3c9-44a424c35ef5"
|
|
Author = "Torsten Brendgen"
|
|
Copyright = "(c) Torsten Brendgen. All rights reserved."
|
|
Description = "Merges DSC configuration data from templates and deployment data."
|
|
PowerShellVersion = "5.1"
|
|
FunctionsToExport = @(
|
|
"Merge-DSCConfigurationData"
|
|
)
|
|
CmdletsToExport = @()
|
|
VariablesToExport = @()
|
|
AliasesToExport = @()
|
|
PrivateData = @{
|
|
PSData = @{
|
|
Tags = @(
|
|
"DSC",
|
|
"ConfigurationData"
|
|
)
|
|
ReleaseNotes = "Initial module layout."
|
|
}
|
|
}
|
|
}
|