Skip to content

Commit

Permalink
fix(WinRegOps): ➕ Changed WisherTools.Helpers to a RequiredModule m…
Browse files Browse the repository at this point in the history
…odule vs a nested module (#7)
  • Loading branch information
LarryWisherMan authored Sep 9, 2024
1 parent 4356b65 commit 7754510
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Updated Icon png
- Changed `WisherTools.Helpers` to a RequiredModule module vs a nested module

## [v0.2.0] - 2024-09-08

Expand Down
12 changes: 6 additions & 6 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ VersionedOutputDirectory: true
####################################################

NestedModule:
WisherTools.Helpers: # This is the first submodule to build into the output
CopyOnly: true
Path: ./output/RequiredModules/WisherTools.Helpers
# # is trimmed (remove metadata & Prerelease tag) and OutputDirectory expanded (the only one)
# VersionedOutputDirectory: false
AddToManifest: True
#WisherTools.Helpers: # This is the first submodule to build into the output
#CopyOnly: true
#Path: ./output/RequiredModules/WisherTools.Helpers
# # is trimmed (remove metadata & Prerelease tag) and OutputDirectory expanded (the only one)
# VersionedOutputDirectory: false
#AddToManifest: True
# HelperSubmodule: # This is the first submodule to build into the output
# Path: ./*/Modules/HelperSubmodule/HelperSubmodule.psd1
# # is trimmed (remove metadata & Prerelease tag) and OutputDirectory expanded (the only one)
Expand Down
4 changes: 2 additions & 2 deletions source/WinRegOps.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Typical use cases include:
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
RequiredModules = @('WisherTools.Helpers')

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand All @@ -83,7 +83,7 @@ Typical use cases include:
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = ''
NestedModules = @()

# 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 = @()
Expand Down

0 comments on commit 7754510

Please sign in to comment.