-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSql.psd1
More file actions
24 lines (21 loc) · 694 Bytes
/
Sql.psd1
File metadata and controls
24 lines (21 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@{
ModuleVersion = "4.0.0"
PowerShellVersion = "7.6"
CompanyName = "Cedric-Belin.fr"
Copyright = "© Cédric Belin"
Description = "A simple micro-ORM, based on ADO.NET and data annotations."
GUID = "d4c1876f-de9b-45d7-a9c1-d9276dd6b65e"
AliasesToExport = @()
CmdletsToExport = @()
FunctionsToExport = @()
VariablesToExport = @()
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"
}
}
}