Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- SqlServerDsc
- Added adapted resource manifest generation to the build pipeline.
Comment thread
Gijsreyn marked this conversation as resolved.

### Fixed

- DSC_SqlRS and DSC_SqlWindowsFirewall
Expand Down
8 changes: 8 additions & 0 deletions RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,12 @@

# For development
'Viscalyx.Common' = 'latest' # Invoke-PesterJob to run tests

# For producing Microsoft DSC resource manifests
'DscResource.Authoring' = @{
Version = 'latest'
Parameters = @{
AllowPrerelease = $true
}
}
}
3 changes: 3 additions & 0 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ BuildWorkflow:
- Build_Module_ModuleBuilder
- Build_NestedModules_ModuleBuilder
- Create_Changelog_Release_Output
- Create_DscAdaptedResourceManifests

docs:
- Clean_WikiContent_Folder
Expand Down Expand Up @@ -84,6 +85,8 @@ ModuleBuildTasks:
- 'Task.*'
DscResource.Test:
- 'Task.*'
DscResource.Authoring:
- 'Task.*'

TaskHeader: |
param($Path)
Expand Down
Loading