AdoSQLiteModule.psd1
# --- AdoSQLiteModule.psd1 (module manifest template) --- # Save this as AdoSQLiteModule.psd1 next to the .psm1 file and adjust fields as needed. @{ RootModule = 'AdoSQLiteModule.psm1' ModuleVersion = '1.0.1' GUID = 'e8b9a6f2-0000-4b1d-9f8b-6a1234567890' Author = 'Robin Hu' CompanyName = 'Robin Hu' Copyright = '(c) Robin Hu. 2025 All rights reserved.' Description = 'ADO.NET backed SQLite cmdlets compatible with PowerShell 5.1+. Provides Invoke-AdoSQLiteQuery/NonQuery/BulkCopy.' PowerShellVersion = '5.1' FunctionsToExport = @('Invoke-AdoSQLiteQuery','Invoke-AdoSQLiteNonQuery','Invoke-AdoSQLiteBulkCopy') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() FileList = @('AdoSQLiteModule.psm1') } # End of AdoSQLiteModule.psd1 |