OledbSql.psd1
@{ RootModule = 'OledbSql.psm1' ModuleVersion = '1.0.2' GUID = '0cdcc258-b0db-4183-bfcd-cf91a90a1e32' Author = 'Nathan Hartley' Copyright = '(c) 2015 Nathan Hartley. All rights reserved.' Description = 'Provides a simple means to execute SQL queries and return the results as Powershell objects.' PowerShellVersion = '2.0' FunctionsToExport = @( 'New-OledbConnection', 'Invoke-OledbSql' ) PrivateData = @{ PSData = @{ Tags = @( 'sql', 'oledb' ) LicenseUri = 'https://bitbucket.org/treestryder/powershell_module_oledbsql/src/f5ca5911e92b4e28426a4f3f17fea4c65b29933f/license.txt?at=default' ProjectUri = 'https://bitbucket.org/treestryder/powershell_module_oledbsql' } } } |