CommonTasks.psd1

@{
    RootModule        = 'CommonTasks.psm1'
    ModuleVersion     = '0.10.0'
    GUID              = '63e8bf79-62d3-4249-8fe6-9a766fbe8481'
    Author            = 'DSC Community'
    CompanyName       = 'DSC Community'
    Copyright         = 'Copyright the DSC Community contributors. All rights reserved.'
    Description       = 'DSC composite resource for https://github.com/dsccommunity/DscWorkshop'
    PowerShellVersion = '5.1'
    FunctionsToExport = '*'
    CmdletsToExport   = '*'
    VariablesToExport = '*'
    AliasesToExport   = '*'

    PrivateData       = @{

        PSData = @{
            Prerelease   = 'preview0001'
            Tags         = @('DesiredStateConfiguration', 'DSC', 'DSCResource')
            LicenseUri   = 'https://github.com/dsccommunity/CommonTasks/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/dsccommunity/CommonTasks'
            IconUri      = 'https://dsccommunity.org/images/DSC_Logo_300p.png'
            ReleaseNotes = '## [0.10.0-preview0001] - 2023-03-08
## Added
 
- `AzureConnectedMachine` Composite to install and configure the Azure Connected Machine Agent
 
## Changed
 
- Fixed Typo in AddsDomainController documentation
 
 
### Added
 
- AddsDomainController:
    - add UnprotectFromAccidentalDeletion to allow dc promote if an existing AD computer account is protected
- DhcpServerAuthorization:
    - new resource to authorize DHCP server in AD
- FailoverCluster:
    - add Networks support
    - add installation of required Windows Features
    - update documentation
 
### Changed
 
- DHCPServer:
    - fix EnableSecurityGroups if resource is not running on a domain controller
- HyperV:
    - remove unused code after migration to HyperVDsc
 
 
'

        }
    }
}