DscConfig.M365.psd1

@{
    RootModule        = 'DscConfig.M365.psm1'
    ModuleVersion     = '0.6.0'
    GUID              = '3ed9a67d-9e7e-4c59-86b3-4f4bfd929c31'
    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   = ''
            Tags         = @('DesiredStateConfiguration', 'DSC', 'DSCResource')
            LicenseUri   = 'https://github.com/dsccommunity/DscConfig.M365/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/dsccommunity/DscConfig.M365'
            IconUri      = 'https://dsccommunity.org/images/DSC_Logo_300p.png'
            ReleaseNotes = '## [0.6.0] - 2025-05-22
 
### Added
 
- The code generator will add standard connection parameters to to each array composite resource:
  - TenantId
  - ManagedIdentity
  - Credential
  - CertificateThumbprint
  - ApplicationSecret
  - ApplicationId
  - AccessTokens
- Added test `''<DscResourceName>'' MOF file should contain Azure connection data`.
- Added more documentation.
 
### Changed
 
- Updated the `Microsoft365DSC` module to version `1.25.205.1` in `RequiredModules.psd1`.
- Updated the `DscBuildHelpers` module to version `0.3.0-preview0003` in `RequiredModules.psd1`.
- `Get-DscResourceProperty` is not a public function hence in needs to be called in the module context.
 
### Removed
 
- `DscBuildHelpers` module and in gitignore
- `ProtectedData` module and in gitignore
 
'

        }
    }
}