|
1 | 1 | @{ |
2 | | - |
| 2 | + |
3 | 3 | # Script module or binary module file associated with this manifest |
4 | 4 | RootModule = 'dbops.psm1' |
5 | | - |
| 5 | + |
6 | 6 | # Version number of this module. |
7 | 7 | ModuleVersion = '0.5.0' |
8 | | - |
| 8 | + |
9 | 9 | # ID used to uniquely identify this module |
10 | 10 | GUID = '16dff216-533a-4fa3-9b2e-4408dbe15e63' |
11 | | - |
| 11 | + |
12 | 12 | # Author of this module |
13 | 13 | Author = 'Kirill Kravtsov' |
14 | | - |
| 14 | + |
15 | 15 | # Company or vendor of this module |
16 | 16 | CompanyName = '' |
17 | | - |
| 17 | + |
18 | 18 | # Copyright statement for this module |
19 | 19 | Copyright = 'Kirill Kravtsov (@nvarscar) 2018. All rights reserved.' |
20 | | - |
| 20 | + |
21 | 21 | # Description of the functionality provided by this module |
22 | | - Description = 'Deploying SQL code by building, modifying, verifying and deploying packages' |
23 | | - |
| 22 | + Description = 'Cross-platform SQL code deployment module with Continuous Deployment capabilities' |
| 23 | + |
24 | 24 | # Minimum version of the Windows PowerShell engine required by this module |
25 | 25 | PowerShellVersion = '5.0' |
26 | | - |
| 26 | + |
27 | 27 | # Name of the Windows PowerShell host required by this module |
28 | 28 | PowerShellHostName = '' |
29 | | - |
| 29 | + |
30 | 30 | # Minimum version of the Windows PowerShell host required by this module |
31 | 31 | PowerShellHostVersion = '' |
32 | | - |
| 32 | + |
33 | 33 | # Minimum version of the .NET Framework required by this module |
34 | 34 | DotNetFrameworkVersion = '3.0' |
35 | | - |
| 35 | + |
36 | 36 | # Minimum version of the common language runtime (CLR) required by this module |
37 | 37 | CLRVersion = '2.0.50727' |
38 | | - |
| 38 | + |
39 | 39 | # Processor architecture (None, X86, Amd64, IA64) required by this module |
40 | 40 | ProcessorArchitecture = 'None' |
41 | | - |
| 41 | + |
42 | 42 | # Modules that must be imported into the global environment prior to importing |
43 | 43 | # this module |
44 | 44 | RequiredModules = @( |
45 | 45 | @{ ModuleName = 'PSFramework'; ModuleVersion = '0.10.30.165'} |
46 | 46 | ) |
47 | | - |
| 47 | + |
48 | 48 | # Assemblies that must be loaded prior to importing this module |
49 | 49 | RequiredAssemblies = @() |
50 | | - |
| 50 | + |
51 | 51 | # Script files (.ps1) that are run in the caller's environment prior to |
52 | 52 | # importing this module |
53 | 53 | ScriptsToProcess = @() |
54 | | - |
| 54 | + |
55 | 55 | # Type files (.ps1xml) to be loaded when importing this module |
56 | 56 | TypesToProcess = @('internal\xml\dbops.types.ps1xml') |
57 | | - |
| 57 | + |
58 | 58 | # Format files (.ps1xml) to be loaded when importing this module |
59 | 59 | FormatsToProcess = @('internal\xml\dbops.format.ps1xml') |
60 | | - |
| 60 | + |
61 | 61 | # Modules to import as nested modules of the module specified in |
62 | 62 | # ModuleToProcess |
63 | 63 | NestedModules = @() |
64 | | - |
| 64 | + |
65 | 65 | # Functions to export from this module |
66 | 66 | FunctionsToExport = @( |
67 | 67 | 'Add-DBOBuild', |
|
91 | 91 | 'ConvertFrom-EncryptedString', |
92 | 92 | 'Invoke-DBOQuery' |
93 | 93 | ) |
94 | | - |
| 94 | + |
95 | 95 | # Cmdlets to export from this module |
96 | 96 | CmdletsToExport = '' |
97 | 97 |
|
|
109 | 109 |
|
110 | 110 | # Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. |
111 | 111 | PrivateData = @{ |
112 | | - |
| 112 | + |
113 | 113 | #Support for PowerShellGet galleries. |
114 | 114 | PSData = @{ |
115 | | - |
| 115 | + |
116 | 116 | # Tags applied to this module. These help with module discovery in online galleries. |
117 | 117 | Tags = @('SqlServer', 'SQL', 'Deployment', 'Deploy', 'Automation', 'dbops', 'DbUp', 'CI', 'DevOps', 'Oracle', 'CD') |
118 | | - |
| 118 | + |
119 | 119 | # A URL to the license for this module. |
120 | 120 | LicenseUri = 'https://opensource.org/licenses/MIT' |
121 | | - |
| 121 | + |
122 | 122 | # A URL to the main website for this project. |
123 | 123 | ProjectUri = 'https://github.com/sqlcollaborative/dbops' |
124 | | - |
| 124 | + |
125 | 125 | # A URL to an icon representing this module. |
126 | | - IconUri = 'https://github.com/sqlcollaborative/dbops' |
127 | | - |
| 126 | + IconUri = 'https://sqlcollaborative.github.io/dbops/img/dbops.jpg' |
| 127 | + |
128 | 128 | # ReleaseNotes of this module |
129 | 129 | # ReleaseNotes = '' |
130 | | - |
| 130 | + |
131 | 131 | } # End of PSData hashtable |
132 | | - |
| 132 | + |
133 | 133 | } # End of PrivateData hashtable |
134 | 134 | } |
0 commit comments