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.0'
    GUID              = 'e8b9a6f2-0000-4b1d-9f8b-6a1234567890'
    Author            = 'YourName'
    CompanyName       = 'YourCompany'
    Copyright         = '(c) YourName'
    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