-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Adds cmdlets needed for NetworkingDsc (#28)
- Added cmdlet ConvertTo-CimInstance. _This cmdlet comes from NetworkingDsc._ - Added cmdlet ConvertTo-Hashtable. _This cmdlet comes from NetworkingDsc._ - Update the README.md with new cmdlet documentation format. following the style guideline. - Update to use HQRM tests from the DscResource.Test module. - Update the repository to use the latest version of ModuleBuilder. - Update to use the latest pipeline files. - BREAKING CHANGE: Updated the cmdlet Test-DscParameterState to match the one in the module NetworkingDsc which have been extended with for example checking credentials and types. This might be a breaking change in certain scenarios, for example the type checking if on by default. This change is required to be able to move the module NetworkingDsc to use this module.
- Loading branch information
Showing
34 changed files
with
1,923 additions
and
538 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
.vscode | ||
.vscode | ||
.vs | ||
output/ | ||
modules/* | ||
.kitchen/* | ||
**.bak | ||
.kitchen.local.yml | ||
|
||
!**/README.md | ||
DscResource.tests |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Contributing | ||
|
||
Please check out common DSC Community [contributing guidelines](https://dsccommunity.org/guidelines/contributing). | ||
|
||
## Running the Tests | ||
|
||
If want to know how to run this module's tests you can look at the [Testing Guidelines](https://dsccommunity.org/guidelines/testing-guidelines/#running-tests) |
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
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 |
---|---|---|
@@ -1,20 +1,21 @@ | ||
@{ | ||
# Set up a mini virtual environment... | ||
PSDependOptions = @{ | ||
AddToPath = $true | ||
Target = 'output\RequiredModules' | ||
Parameters = @{ | ||
Repository = '' | ||
} | ||
} | ||
|
||
invokeBuild = 'latest' | ||
InvokeBuild = 'latest' | ||
PSScriptAnalyzer = 'latest' | ||
pester = 'latest' | ||
Pester = 'latest' | ||
Plaster = 'latest' | ||
ModuleBuilder = '1.0.0' | ||
ModuleBuilder = 'latest' | ||
ChangelogManagement = 'latest' | ||
Sampler = 'latest' | ||
MarkdownLinkCheck = 'latest' | ||
'DscResource.AnalyzerRules' = 'latest' | ||
xDscResourceDesigner = 'latest' | ||
'DscResource.Test' = 'latest' | ||
} |
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
@{ # Defaults Parameter value to be loaded by the Resolve-Dependency command (unless set in Bound Parameters) | ||
#PSDependTarget = './output/modules' | ||
#Proxy = '' | ||
#ProxyCredential = '$MyCredentialVariable' #TODO: find a way to support credentials in build (resolve variable) | ||
@{ | ||
Gallery = 'PSGallery' | ||
# AllowOldPowerShellGetModule = $true | ||
#MinimumPSDependVersion = '0.3.0' | ||
AllowPrerelease = $false | ||
WithYAML = $true # Will also bootstrap PowerShell-Yaml to read other config files | ||
WithYAML = $true | ||
} |
Oops, something went wrong.