-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from dsccommunity/ReverseDSC
ReverseDSC module addition
- Loading branch information
Showing
6 changed files
with
9,307 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
source/Modules/ConfigMgrCBDsc.ReverseDsc/ConfigMgrCBDsc.ReverseDsc.psd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# | ||
# Module manifest for module 'ConfigMgrCBDsc.ReverseDSC' | ||
# | ||
# Generated by: Microsoft Corporation | ||
# | ||
# Generated on: 05/18/2021 | ||
# | ||
|
||
@{ | ||
# Script module or binary module file associated with this manifest. | ||
RootModule = 'ConfigMgrCBDsc.ReverseDSC.psm1' | ||
|
||
# Version number of this module. | ||
ModuleVersion = '1.0' | ||
|
||
# ID used to uniquely identify this module | ||
GUID = '566f0e36-8821-41c6-8b82-5c9d4716515f' | ||
|
||
# Author of this module | ||
Author = 'DSC Community' | ||
|
||
# Company or vendor of this module | ||
CompanyName = 'DSC Community' | ||
|
||
# Copyright statement for this module | ||
Copyright = 'Copyright the DSC Community contributors. All rights reserved.' | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'This module includes functions used in the ConfigMgrCBDsc module.' | ||
|
||
# Minimum version of the Windows PowerShell engine required by this module | ||
PowerShellVersion = '4.0' | ||
|
||
# Functions to export from this module | ||
FunctionsToExport = @( | ||
'Assert-CMModule' | ||
'Set-OutFile' | ||
'Set-CMThing' | ||
'Set-ConfigMgrCBDscReverse' | ||
'New-Configuration' | ||
) | ||
|
||
# Cmdlets to export from this module | ||
CmdletsToExport = @() | ||
|
||
# Variables to export from this module | ||
VariablesToExport = @() | ||
|
||
# Aliases to export from this module | ||
AliasesToExport = @() | ||
|
||
# DSC resources to export from this module | ||
DscResourcesToExport = @() | ||
|
||
<# | ||
Private data to pass to the module specified in RootModule/ModuleToProcess. | ||
This may also contain a PSData hashtable with additional module metadata used by PowerShell. | ||
#> | ||
PrivateData = @{ | ||
PSData = @{ | ||
} # End of PSData hashtable | ||
} # End of PrivateData hashtable | ||
} |
Oops, something went wrong.