PSAdSync.psd1

@{
    RootModule = 'PSADSync.psm1'
    ModuleVersion = '1.0.69'
    GUID = 'ea8b8286-a4ae-4c52-822e-3a6dc264859e'
    Author = 'Adam Bertram'
    CompanyName = 'Adam the Automator, LLC'
    Copyright = '(c) 2017 Adam Bertram. All rights reserved.'
    Description = 'This module expedites the process of syncing a CSV file full of employees with Active Directory.'
    PowerShellVersion = '5.0'
    FunctionsToExport = 'Invoke-AdSync'
    CmdletsToExport = '*'
    VariablesToExport = '*'
    AliasesToExport = '*'
    PrivateData = @{
        PSData = @{

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

            # A URL to the license for this module.
            # LicenseUri = ''

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

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

            # ReleaseNotes of this module
            # ReleaseNotes = ''

        } # End of PSData hashtable

    } 
}