CommonTasks.psd1

@{
    RootModule        = 'CommonTasks.psm1'
    ModuleVersion     = '0.10.1'
    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.1-preview0001] - 2025-07-26
 
### Changed
 
- Migrated from legacy DSC modules to community-supported modules:
  - `xDhcpServer` to `DhcpServerDsc` (v4.0.0)
  - `xExchange` to `ExchangeDsc` (v2.0.0)
- Updated dependency versions:
  - `xPSDesiredStateConfiguration` to `9.2.1`.
  - `ComputerManagementDsc` to `10.0.0`.
  - `NetworkingDsc` to `9.1.0`.
  - `StorageDsc` to `6.0.1`.
  - `ActiveDirectoryDsc` to `6.7.0`.
  - `DFSDsc` to `5.1.1`.
  - `FailoverClusterDsc` to `2.2.0`.
  - `GPRegistryPolicyDsc` to `1.3.1`.
  - `SharePointDSC` to `5.6.1`.
  - `ConfigMgrCBDsc` to `4.0.0`.
 
'

        }
    }
}