|
1 | 1 | @{ |
2 | 2 | # Script module or binary module file associated with this manifest |
3 | | - ModuleToProcess = 'PSDatabaseClone.psm1' |
| 3 | + ModuleToProcess = 'PSDatabaseClone.psm1' |
4 | 4 |
|
5 | 5 | # Version number of this module. |
6 | | - ModuleVersion = '0.1.0.0' |
| 6 | + ModuleVersion = '0.1.0.0' |
7 | 7 |
|
8 | 8 | # ID used to uniquely identify this module |
9 | | - GUID = '747980ca-0d3d-4529-b4fd-e6cdd059c62a' |
| 9 | + GUID = '747980ca-0d3d-4529-b4fd-e6cdd059c62a' |
10 | 10 |
|
11 | 11 | # Author of this module |
12 | | - Author = 'Sander Stad' |
| 12 | + Author = 'Sander Stad' |
13 | 13 |
|
14 | 14 | # Company or vendor of this module |
15 | | - CompanyName = '' |
| 15 | + CompanyName = '' |
16 | 16 |
|
17 | 17 | # Copyright statement for this module |
18 | | - Copyright = 'Copyright (c) 2018 Sander Stad' |
| 18 | + Copyright = 'Copyright (c) 2018 Sander Stad' |
19 | 19 |
|
20 | 20 | # Description of the functionality provided by this module |
21 | | - Description = 'Module for cloning SQL Server databases' |
| 21 | + Description = 'Module for cloning SQL Server databases' |
22 | 22 |
|
23 | 23 | # Minimum version of the Windows PowerShell engine required by this module |
24 | | - PowerShellVersion = '5.0' |
| 24 | + PowerShellVersion = '5.0' |
25 | 25 |
|
26 | 26 | # Name of the Windows PowerShell host required by this module |
27 | 27 | # PowerShellHostName = '' |
|
40 | 40 |
|
41 | 41 | # Modules that must be imported into the global environment prior to importing |
42 | 42 | # this module |
43 | | - RequiredModules = @( |
| 43 | + RequiredModules = @( |
44 | 44 | @{ ModuleName = 'PSFramework'; ModuleVersion = '0.9.10.23' }, |
45 | 45 | @{ ModuleName = 'dbatools'; ModuleVersion = '0.9.337' } |
46 | 46 | ) |
|
63 | 63 | # NestedModules = @() |
64 | 64 |
|
65 | 65 | # Functions to export from this module |
66 | | - FunctionsToExport = 'Initialize-PSDCVhdDisk', |
| 66 | + FunctionsToExport = |
67 | 67 | 'Invoke-PSDCRepairClone', |
68 | 68 | 'New-PSDCClone', |
69 | 69 | 'New-PSDCImage', |
70 | | - 'New-PSDCVhdDisk', |
71 | 70 | 'Remove-PSDCClone', |
72 | | - 'Remove-PSDCImage', |
| 71 | + 'Remove-PSDCImage', |
73 | 72 | 'Set-PSDCConfiguration', |
74 | 73 | 'Get-PSDCClone', |
75 | 74 | 'Get-PSDCImage', |
76 | 75 | 'Convert-PSDCLocalUncPathToLocalPath' |
77 | 76 |
|
78 | 77 | # Cmdlets to export from this module |
79 | | - CmdletsToExport = '' |
| 78 | + CmdletsToExport = '' |
80 | 79 |
|
81 | 80 | # Variables to export from this module |
82 | | - VariablesToExport = '' |
| 81 | + VariablesToExport = '' |
83 | 82 |
|
84 | 83 | # Aliases to export from this module |
85 | | - AliasesToExport = '' |
| 84 | + AliasesToExport = '' |
86 | 85 |
|
87 | 86 | # List of all modules packaged with this module |
88 | | - ModuleList = @() |
| 87 | + ModuleList = @() |
89 | 88 |
|
90 | 89 | # List of all files packaged with this module |
91 | | - FileList = @() |
| 90 | + FileList = @() |
92 | 91 |
|
93 | 92 | # Private data to pass to the module specified in ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. |
94 | | - PrivateData = @{ |
| 93 | + PrivateData = @{ |
95 | 94 |
|
96 | 95 | #Support for PowerShellGet galleries. |
97 | 96 | PSData = @{ |
|
0 commit comments