Skip to content

Commit 3471d54

Browse files
committed
Changing description
1 parent cc45fbf commit 3471d54

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

dbops.psd1

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
@{
2-
2+
33
# Script module or binary module file associated with this manifest
44
RootModule = 'dbops.psm1'
5-
5+
66
# Version number of this module.
77
ModuleVersion = '0.5.0'
8-
8+
99
# ID used to uniquely identify this module
1010
GUID = '16dff216-533a-4fa3-9b2e-4408dbe15e63'
11-
11+
1212
# Author of this module
1313
Author = 'Kirill Kravtsov'
14-
14+
1515
# Company or vendor of this module
1616
CompanyName = ''
17-
17+
1818
# Copyright statement for this module
1919
Copyright = 'Kirill Kravtsov (@nvarscar) 2018. All rights reserved.'
20-
20+
2121
# 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+
2424
# Minimum version of the Windows PowerShell engine required by this module
2525
PowerShellVersion = '5.0'
26-
26+
2727
# Name of the Windows PowerShell host required by this module
2828
PowerShellHostName = ''
29-
29+
3030
# Minimum version of the Windows PowerShell host required by this module
3131
PowerShellHostVersion = ''
32-
32+
3333
# Minimum version of the .NET Framework required by this module
3434
DotNetFrameworkVersion = '3.0'
35-
35+
3636
# Minimum version of the common language runtime (CLR) required by this module
3737
CLRVersion = '2.0.50727'
38-
38+
3939
# Processor architecture (None, X86, Amd64, IA64) required by this module
4040
ProcessorArchitecture = 'None'
41-
41+
4242
# Modules that must be imported into the global environment prior to importing
4343
# this module
4444
RequiredModules = @(
4545
@{ ModuleName = 'PSFramework'; ModuleVersion = '0.10.30.165'}
4646
)
47-
47+
4848
# Assemblies that must be loaded prior to importing this module
4949
RequiredAssemblies = @()
50-
50+
5151
# Script files (.ps1) that are run in the caller's environment prior to
5252
# importing this module
5353
ScriptsToProcess = @()
54-
54+
5555
# Type files (.ps1xml) to be loaded when importing this module
5656
TypesToProcess = @('internal\xml\dbops.types.ps1xml')
57-
57+
5858
# Format files (.ps1xml) to be loaded when importing this module
5959
FormatsToProcess = @('internal\xml\dbops.format.ps1xml')
60-
60+
6161
# Modules to import as nested modules of the module specified in
6262
# ModuleToProcess
6363
NestedModules = @()
64-
64+
6565
# Functions to export from this module
6666
FunctionsToExport = @(
6767
'Add-DBOBuild',
@@ -91,7 +91,7 @@
9191
'ConvertFrom-EncryptedString',
9292
'Invoke-DBOQuery'
9393
)
94-
94+
9595
# Cmdlets to export from this module
9696
CmdletsToExport = ''
9797

@@ -109,26 +109,26 @@
109109

110110
# Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
111111
PrivateData = @{
112-
112+
113113
#Support for PowerShellGet galleries.
114114
PSData = @{
115-
115+
116116
# Tags applied to this module. These help with module discovery in online galleries.
117117
Tags = @('SqlServer', 'SQL', 'Deployment', 'Deploy', 'Automation', 'dbops', 'DbUp', 'CI', 'DevOps', 'Oracle', 'CD')
118-
118+
119119
# A URL to the license for this module.
120120
LicenseUri = 'https://opensource.org/licenses/MIT'
121-
121+
122122
# A URL to the main website for this project.
123123
ProjectUri = 'https://github.com/sqlcollaborative/dbops'
124-
124+
125125
# 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+
128128
# ReleaseNotes of this module
129129
# ReleaseNotes = ''
130-
130+
131131
} # End of PSData hashtable
132-
132+
133133
} # End of PrivateData hashtable
134134
}

0 commit comments

Comments
 (0)