ProductivityTools.PSDbUp.psd1

#
# Module manifest for module 'module'
#
# Generated by: pwujczyk
#
# Generated on: 11/4/2018 6:13:10 PM
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'ProductivityTools.PSDbUp.psm1'

# Version number of this module.
ModuleVersion = '0.0.3'

# ID used to uniquely identify this module
GUID = '9189f700-c533-4bc3-861d-4e2d63e7764d'

# Author of this module
Author = 'Pawel Wujczyk'

# Description of the functionality provided by this module
Description = 'Module wraps DbUp functionality in to convinient to use function. To invoke it you need to provide, SqlServer instance name and SqlServer database name. If you want you can provide schema for log table (if not default dbo), and path to scripts (if not provided - current directory)'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @("ProductivityTools.PSSQLCommands")

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @('.\lib\dbup-sqlserver.dll','.\lib\dbup-core.dll')

# Functions to export from this module
FunctionsToExport = @('New-DbUpMigration','Invoke-DbUpMigration')

# HelpInfo URI of this module
HelpInfoURI = ' http://www.productivitytools.tech/psdbup/'

PrivateData = @{

    PSData = @{

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

        # A URL to the main website for this project.
        ProjectUri = 'http://www.productivitytools.tech/psdbup/'

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