-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSql.psd1
More file actions
51 lines (46 loc) · 1.13 KB
/
Sql.psd1
File metadata and controls
51 lines (46 loc) · 1.13 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
@{
DefaultCommandPrefix = "Sql"
ModuleVersion = "3.2.0"
PowerShellVersion = "7.5"
RootModule = "bin/Belin.Sql.Cmdlets.dll"
Author = "Cédric Belin <[email protected]>"
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 = @()
FunctionsToExport = @()
VariablesToExport = @()
CmdletsToExport = @(
"Approve-Transaction"
"Close-Connection"
"Deny-Transaction"
"Find-Object"
"Get-First"
"Get-Mapper"
"Get-Scalar"
"Get-Single"
"Invoke-NonQuery"
"Invoke-Query"
"Invoke-Reader"
"New-Command"
"New-Connection"
"New-Parameter"
"New-Transaction"
"Publish-Object"
"Remove-Object"
"Test-Object"
"Update-Object"
)
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"
}
}
}