Skip to content

Commit 2f7708a

Browse files
committed
Removed internal functions from list
1 parent 769e723 commit 2f7708a

1 file changed

Lines changed: 17 additions & 18 deletions

File tree

PSDatabaseClone.psd1

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
@{
22
# Script module or binary module file associated with this manifest
3-
ModuleToProcess = 'PSDatabaseClone.psm1'
3+
ModuleToProcess = 'PSDatabaseClone.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '0.1.0.0'
6+
ModuleVersion = '0.1.0.0'
77

88
# ID used to uniquely identify this module
9-
GUID = '747980ca-0d3d-4529-b4fd-e6cdd059c62a'
9+
GUID = '747980ca-0d3d-4529-b4fd-e6cdd059c62a'
1010

1111
# Author of this module
12-
Author = 'Sander Stad'
12+
Author = 'Sander Stad'
1313

1414
# Company or vendor of this module
15-
CompanyName = ''
15+
CompanyName = ''
1616

1717
# Copyright statement for this module
18-
Copyright = 'Copyright (c) 2018 Sander Stad'
18+
Copyright = 'Copyright (c) 2018 Sander Stad'
1919

2020
# Description of the functionality provided by this module
21-
Description = 'Module for cloning SQL Server databases'
21+
Description = 'Module for cloning SQL Server databases'
2222

2323
# Minimum version of the Windows PowerShell engine required by this module
24-
PowerShellVersion = '5.0'
24+
PowerShellVersion = '5.0'
2525

2626
# Name of the Windows PowerShell host required by this module
2727
# PowerShellHostName = ''
@@ -40,7 +40,7 @@
4040

4141
# Modules that must be imported into the global environment prior to importing
4242
# this module
43-
RequiredModules = @(
43+
RequiredModules = @(
4444
@{ ModuleName = 'PSFramework'; ModuleVersion = '0.9.10.23' },
4545
@{ ModuleName = 'dbatools'; ModuleVersion = '0.9.337' }
4646
)
@@ -63,35 +63,34 @@
6363
# NestedModules = @()
6464

6565
# Functions to export from this module
66-
FunctionsToExport = 'Initialize-PSDCVhdDisk',
66+
FunctionsToExport =
6767
'Invoke-PSDCRepairClone',
6868
'New-PSDCClone',
6969
'New-PSDCImage',
70-
'New-PSDCVhdDisk',
7170
'Remove-PSDCClone',
72-
'Remove-PSDCImage',
71+
'Remove-PSDCImage',
7372
'Set-PSDCConfiguration',
7473
'Get-PSDCClone',
7574
'Get-PSDCImage',
7675
'Convert-PSDCLocalUncPathToLocalPath'
7776

7877
# Cmdlets to export from this module
79-
CmdletsToExport = ''
78+
CmdletsToExport = ''
8079

8180
# Variables to export from this module
82-
VariablesToExport = ''
81+
VariablesToExport = ''
8382

8483
# Aliases to export from this module
85-
AliasesToExport = ''
84+
AliasesToExport = ''
8685

8786
# List of all modules packaged with this module
88-
ModuleList = @()
87+
ModuleList = @()
8988

9089
# List of all files packaged with this module
91-
FileList = @()
90+
FileList = @()
9291

9392
# 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 = @{
9594

9695
#Support for PowerShellGet galleries.
9796
PSData = @{

0 commit comments

Comments
 (0)