Einstein.Progress.psd1

# Module manifest for module 'Einstein.Progress'
# Generated by: Josh Einstein
# Generated on: 1/28/2016

@{

    RootModule = 'Einstein.Progress.psm1'
    ModuleVersion = '3.0.1'
    GUID = 'ff17d8b7-b66e-49d0-b5db-cf22b170a258'
    Description = 'Adds functions that make it easy to monitor the progress of pipeline commands with a progress bar.'

    Author = 'Josh Einstein'
    CompanyName = 'Einstein Technologies'
    Copyright = 'Copyright 2013-2017 Einstein Technologies. All rights reserved.'

    PowerShellVersion = '4.0'
    RequiredModules = @()

    FunctionsToExport = @(
        'Measure-Progress'
    )
    AliasesToExport = @(
        '%%'
    )

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{

        PSData = @{

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

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

            # A URL to the main website for this project.
            # ProjectUri = ''

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

            # ReleaseNotes of this module
            # ReleaseNotes = ''

        } # End of PSData hashtable

    } # End of PrivateData hashtable

}