-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPSAdoNet.psd1
49 lines (38 loc) · 1.59 KB
/
PSAdoNet.psd1
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
@{
# Script module or binary module file associated with this manifest.
RootModule = 'PSAdoNet.psm1'
# Version number of this module.
ModuleVersion = '1.0'
# ID used to uniquely identify this module
GUID = 'b951295b-6699-482b-8962-89a080d4cb8e'
# Author of this module
Author = 'Pim Brouwers'
# Company or vendor of this module
CompanyName = ''
# Copyright statement for this module
Copyright = '(c) 2020 Pim Brouwers. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Composable tools for creating awesome ADO.NET solutions with PowerShell'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.0'
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.0'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @(
'.\src\Close-Resource.ps1',
'.\src\ConvertTo-DataTable.ps1',
'.\src\New-DbCommand.ps1',
'.\src\Invoke-DbCommand.ps1',
'.\src\New-SqlServerConnection.ps1',
'.\src\Invoke-SqlServerBulkCopy.ps1'
)
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @(
'Close-Resource',
'ConvertTo-DataTable'
'New-DbCommand',
'Invoke-DbCommand',
'New-SqlServerConnection',
'Invoke-SqlServerBulkCopy'
)
}