Skip to content

Commit

Permalink
Made changes to xWebAdministration.psd1 and CHANGELOG.md (#523)
Browse files Browse the repository at this point in the history
- Changes to xWebAdministration
  - Optimized exporting in the module manifest for best performance (issue #448).
  • Loading branch information
zufishanali authored and johlju committed Oct 6, 2019
1 parent 6b7113c commit 10338a1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
placed in `/Examples/Resources/$resourceName` ([issue #483](https://github.com/PowerShell/xWebAdministration/issues/483)).
- Added a table of contents for the resource list ([issue #450](https://github.com/PowerShell/xWebAdministration/issues/450)).
- Alphabetized the resource list in the README.md ([issue #449](https://github.com/PowerShell/xWebAdministration/issues/449)).
- Optimized exporting in the module manifest for best performance ([issue #448](https://github.com/PowerShell/xWebAdministration/issues/448)).
- Changes to xIisHandler
- Updated schema.mof to include descriptions for each property ([issue #453](https://github.com/PowerShell/xWebAdministration/issues/453)).
- Moved MSFT_xIisHandler localization strings to strings.psd1 ([issue #463](https://github.com/PowerShell/xWebAdministration/issues/463)).
Expand Down
12 changes: 10 additions & 2 deletions xWebAdministration.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@ PrivateData = @{
} # End of PrivateData hashtable

# Functions to export from this module
FunctionsToExport = '*'
FunctionsToExport = @()

# Cmdlets to export from this module
CmdletsToExport = '*'
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = @()

# Aliases to export from this module
AliasesToExport = @()

}


Expand All @@ -83,4 +90,5 @@ CmdletsToExport = '*'





0 comments on commit 10338a1

Please sign in to comment.