phbitsTest.psd1

@{

    RootModule = 'phbitsTest.psm1'
    
    ModuleVersion = '0.2.0'
    
    GUID = 'f8306d59-0a5f-4ae8-af7d-0bb6c4495649'
    
    Author = 'phbits'
    
    CompanyName = 'phbits'
    
    Copyright = '(c) 2021 phbits. All rights reserved.'
    
    Description = 'phbits Test Module Description'
    
    PowerShellVersion = '5.1'
    
    FunctionsToExport = @('Get-PublicFunction','Get-PublicFunctionTwo')
    
    PrivateData = @{
    
        PSData = @{
    
            Prerelease = 'preview0001'
    
            Tags = 'Test','DoNotUse'
    
            LicenseUri = 'https://github.com/phbits/phbitsTest/blob/main/LICENSE'
    
            ProjectUri = 'https://github.com/phbits/phbitsTest'
    
            ReleaseNotes = '## [0.2.0-preview0001] - 2021-05-26

### Changed

- Tagged initial release as `0.0.1`

### Removed

- Azure Pipelines Code Coverage Job

### Add

- Build task to generate conceptual help.
'

        } # End of PSData hashtable
    } # End of PrivateData hashtable
}