PSql.Deploy.psd1
# © 2023 Subatomix Research Inc. # SPDX-License-Identifier: ISC @{ # Identity GUID = '0d5df8dd-afcc-42cc-9175-a8dac81f779e' RootModule = 'PSql.Deploy.dll' ModuleVersion = '2.0.0' # General Description = 'A simple, yet versatile database migration and seeding system for SQL Server and Azure SQL Database.' Author = 'Jeffrey Sharp' CompanyName = 'Subatomix Research Inc.' Copyright = '© 2023 Subatomix Research Inc.' # Requirements CompatiblePSEditions = 'Core' PowerShellVersion = '7.0' RequiredModules = @( @{ ModuleName = 'PSql' ModuleVersion = '3.0.0' GUID = '218cb4b2-911a-46b1-b47c-d3504acd4627' } ) RequiredAssemblies = @( 'PSql.Deploy.Core' 'Subatomix.PowerShell.TaskHost.dll' ) # Initialization #ScriptsToProcess = @(...) #TypesToProcess = @(...) #FormatsToProcess = @(...) NestedModules = @('PSql.Deploy.psm1') # Exports # NOTE: Use empty arrays to indicate no exports. VariablesToExport = @() AliasesToExport = @() DscResourcesToExport = @() CmdletsToExport = @( 'Get-SqlMigrations' 'Invoke-SqlMigrations2' ) FunctionsToExport = @( 'Find-SqlMigrations' 'Get-SqlMigrationHash' 'Install-SqlMigrationSupport' 'Invoke-SqlMigrations' 'Invoke-SqlMigrationPlan' 'Invoke-SqlSeed' 'New-Error' 'New-SqlMigrationPlan' 'New-SqlContextParallelSet' 'Read-SqlMigration' 'Set-SqlMigrationPlan' ) # Discoverability and URLs PrivateData = @{ PSData = @{ # Additional metadata Prerelease = 'pre09' ProjectUri = 'https://github.com/sharpjs/PSql.Deploy' ReleaseNotes = "https://github.com/sharpjs/PSql.Deploy/blob/master/CHANGES.md" LicenseUri = 'https://github.com/sharpjs/PSql.Deploy/blob/master/LICENSE.txt' IconUri = 'https://github.com/sharpjs/PSql.Deploy/blob/master/icon.png' Tags = @( "SQL", "Server", "Azure", "Migration", "Schema", "PSEdition_Core", "Windows", "Linux", "MacOS" ) } } } |