Skip to content

Commit

Permalink
Add FunctionsToExport to VMware.PSDesiredStateConfiguration module ma…
Browse files Browse the repository at this point in the history
…nifest

Signed-off-by: DSCAutomation <[email protected]>
  • Loading branch information
DSCAutomation committed Feb 19, 2021
1 parent 0c07db0 commit 6eb2769
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## VMware.PSDesiredStateConfiguration 0.0.0.16 - 2021-02-19
### Changed
- Modified the **VMware.PSDesiredStateConfiguration** module manifest to contain the **FunctionsToExport** to allow using the cmdlets without invoking **Import-Module** every time.

## VMware.vSphereDSC 2.1.0.84 - 2021-02-15
### Changed
- Modified the **VMware.vSphereDSC** and **VMware.PSDesiredStateConfiguration** module manifests to contain the **CompatiblePSEditions** module manifest key with both values: **Desktop** and **Core**.
### Changed
- Modified the **VMware.vSphereDSC** and **VMware.PSDesiredStateConfiguration** module manifests to contain the **CompatiblePSEditions** module manifest key with both values: **Desktop** and **Core**.

## VMware.PSDesiredStateConfiguration 0.0.0.15 - 2021-02-15
### Changed
Expand Down Expand Up @@ -111,7 +115,7 @@ All notable changes to this project will be documented in this file.

## VMware.PSDesiredStateConfiguration 0.0.0.6 - 2020-12-18
### Changed
- Fixed the bug with the same references for **DSC Resources** when multiple **vSphereNodes** are passed as array in a **DSC Configuration**.
- Fixed the bug with the same references for **DSC Resources** when multiple **vSphereNodes** are passed as array in a **DSC Configuration**.

## VMware.vSphereDSC 2.1.0.77 - 2020-12-17
### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ModuleToProcess = 'VMware.PSDesiredStateConfiguration.psm1'

# Version number of this module.
ModuleVersion = '1.0.0.15'
ModuleVersion = '1.0.0.16'

# ID used to uniquely identify this module
GUID = '4f9a62bf-e2a6-4bd1-ac20-ccf127bc643e'
Expand All @@ -43,7 +43,7 @@ Description = 'This PowerShell module contains logic for creating and running ob
PowerShellVersion = '5.1'

# 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 = '*'
FunctionsToExport = @('New-VmwDscConfiguration', 'Start-VmwDscConfiguration', 'Test-VmwDscConfiguration', 'Get-VmwDscConfiguration')

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ $script:OrderedPublicClassFiles = $script:ClassResolver.OrderClassFiles()
$script:OrderedPublicClassFiles | ForEach-Object -Process { . $_.FullName }

$script:Functions | ForEach-Object -Process { . $_.FullName }

Export-ModuleMember -Function $script:PublicFunctions.BaseName

0 comments on commit 6eb2769

Please sign in to comment.