SQL-SMO.psd1

@{
    GUID = 'd2f53583-045a-4939-a12b-bd446e0b7fcd'
    Description = 'A module for gathering and editing SQL Server Instance properties utilizing SQL Management Objects.'
    Author = 'Mike Garvey'
    CompanyName = 'DGR Systems, LLC.'
    Copyright = '© 2018 DGR Systems, LLC. All rights reserved.'
    ModuleVersion = '0.2.0'
    PowerShellVersion = '3.0'
    NestedModules = @('SQL-SMO.psm1')
    RequiredAssemblies = @(
        'Assemblies\Microsoft.SqlServer.ConnectionInfo.dll',
        'Assemblies\Microsoft.SqlServer.Dmf.Common.dll',
        'Assemblies\Microsoft.SqlServer.Management.Sdk.Sfc.dll',
        'Assemblies\Microsoft.SqlServer.Smo.dll',
        'Assemblies\Microsoft.SqlServer.SqlClrProvider.dll',
        'Assemblies\Microsoft.SqlServer.SqlEnum.dll'
    )
    FunctionsToExport = @(
        'New-SMO',
        'Set-SMOProperty',
        'Set-SQLMemoryLimit'
    )
    AliasesToExport = @('nsmo')
    CmdletsToExport = ''
    VariablesToExport = ''
    FileList = @(
        'Assemblies\Microsoft.SqlServer.ConnectionInfo.dll',
        'Assemblies\Microsoft.SqlServer.Dmf.Common.dll',
        'Assemblies\Microsoft.SqlServer.Management.Sdk.Sfc.dll',
        'Assemblies\Microsoft.SqlServer.Smo.dll',
        'Assemblies\Microsoft.SqlServer.SqlClrProvider.dll',
        'Assemblies\Microsoft.SqlServer.SqlEnum.dll',
        'SQL-SMO.psd1',
        'SQL-SMO.psm1'
    )
}