ExePackage.psd1

@{
    RootModule = 'ExePackage.psm1'
    DscResourcesToExport = 'ExePackage'
    ModuleVersion = '1.1'
    GUID = 'abcb5dcc-692c-4c4f-a766-04176fbe2425'
    Author = 'Marcuzzo'
    Description = 'Simple DSCResource to install executable setups'
    CompanyName = 'Marcuzzo'
    Copyright = '(c) 2019 Marcuzzo. All rights reserved.'
    PowerShellVersion = '5.0'    

    PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @('DSCResource')

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/Marcuzzo/ExePackageResource/blob/master/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/Marcuzzo/ExePackageResource'

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        # ReleaseNotes = ''

    } # End of PSData hashtable

} # End of PrivateData hashtable


}