-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSql.psd1
More file actions
70 lines (64 loc) · 1.71 KB
/
Sql.psd1
File metadata and controls
70 lines (64 loc) · 1.71 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
63
64
65
66
67
68
69
70
@{
DefaultCommandPrefix = "Sql"
ModuleVersion = "4.0.0"
PowerShellVersion = "7.6"
Author = "Cédric Belin <cedx@outlook.com>"
CompanyName = "Cedric-Belin.fr"
Copyright = "© Cédric Belin"
Description = "A simple micro-ORM, based on ADO.NET and data annotations."
GUID = "d2b1c123-e1bc-4cca-84c5-af102244e3c5"
AliasesToExport = @()
CmdletsToExport = @()
VariablesToExport = @()
FunctionsToExport = @(
"Approve-Transaction"
"Close-Connection"
"Deny-Transaction"
"Find-Object"
"Get-First"
"Get-Mapper"
"Get-Scalar"
"Get-Single"
"Invoke-NonQuery"
"Invoke-Query"
"New-Command"
"New-Connection"
"New-Parameter"
"New-Transaction"
"Publish-Object"
"Remove-Object"
"Test-Object"
"Update-Object"
)
NestedModules = @(
"src/Cmdlets/Approve-Transaction.psm1"
"src/Cmdlets/Close-Connection.psm1"
"src/Cmdlets/Deny-Transaction.psm1"
"src/Cmdlets/Find-Object.psm1"
"src/Cmdlets/Get-First.psm1"
"src/Cmdlets/Get-Mapper.psm1"
"src/Cmdlets/Get-Scalar.psm1"
"src/Cmdlets/Get-Single.psm1"
"src/Cmdlets/Invoke-NonQuery.psm1"
"src/Cmdlets/Invoke-Query.psm1"
"src/Cmdlets/New-Command.psm1"
"src/Cmdlets/New-Connection.psm1"
"src/Cmdlets/New-Parameter.psm1"
"src/Cmdlets/New-Transaction.psm1"
"src/Cmdlets/Publish-Object.psm1"
"src/Cmdlets/Remove-Object.psm1"
"src/Cmdlets/Test-Object.psm1"
"src/Cmdlets/Update-Object.psm1"
)
RequiredAssemblies = @(
"bin/Belin.Sql.dll"
)
PrivateData = @{
PSData = @{
LicenseUri = "https://github.com/cedx/sql.net/blob/main/License.md"
ProjectUri = "https://github.com/cedx/sql.net"
ReleaseNotes = "https://github.com/cedx/sql.net/releases"
Tags = "ado.net", "data", "database", "mapper", "mapping", "orm", "query", "sql"
}
}
}