forked from jdhitsolutions/MySQLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmySQLite.psd1
More file actions
62 lines (58 loc) · 2.04 KB
/
Copy pathmySQLite.psd1
File metadata and controls
62 lines (58 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Module manifest for module 'mySQLite'
@{
RootModule = 'mySQLite.psm1'
ModuleVersion = '0.11.2'
CompatiblePSEditions = @("Desktop","Core")
GUID = '49ac2120-f30e-4244-ac8b-4d18fa9ae9aa'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2019-2023 JDH Information Technology Solutions, Inc.'
Description = 'A set of PowerShell commands for working with SQLite database files. This is a simple alternative to installing any version of SQL Server on your desktop. Note that this module will only work on Windows platforms.'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.6'
ProcessorArchitecture = 'AMD64'
FormatsToProcess = @(
'formats\mySQLiteDB.format.ps1xml',
'formats\mySQLiteTableDetail.format.ps1xml'
)
FunctionsToExport = @(
'Invoke-MySQLiteQuery',
'New-MySQLiteDB',
'New-MySQLiteDBTable',
'ConvertTo-MySQLiteDB',
'Get-MySQLiteTable',
'ConvertFrom-MySQLiteDB',
'Get-MySQLiteDB',
'Open-MySQLiteDB',
'Close-MySQLiteDB',
'Export-MySQLiteDB',
'Import-MySQLiteDB',
'Convert-MySQLiteByteArray'
)
CmdletsToExport = @()
# VariablesToExport = '*'
AliasesToExport = @(
'New-DB',
'ndb',
'New-DBTable',
'ndbt',
'iq',
'todb',
'gtb',
'Get-DBTable',
'ConvertTo-DB',
'ConvertFrom-DB',
'Get-DB',
'Open-DB',
'Close-DB'
)
PrivateData = @{
PSData = @{
Tags = @('sqlite', 'database')
LicenseUri = 'https://github.com/jdhitsolutions/MySQLite/blob/master/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/MySQLite'
# IconUri = ''
# ReleaseNotes = ''
}
}
}