gitextract_4wdl1uu2/ ├── .config/ │ └── dotnet-tools.json ├── .github/ │ └── workflows/ │ ├── Merge-Module.ps1 │ └── build.yml ├── .gitignore ├── .vscode/ │ ├── launch.json │ ├── settings.json │ ├── taskmarks.json │ └── tasks.json ├── Benchmark/ │ ├── Benchmark.ps1 │ └── Data/ │ └── Configuration.psd1 ├── Build.ps1 ├── CHANGELOG.md ├── Examples/ │ ├── TestModuleOne/ │ │ ├── Configuration.psd1 │ │ ├── TestModuleOne.psd1 │ │ └── TestModuleOne.psm1 │ └── TestModuleTwo/ │ ├── Configuration.psd1 │ ├── TestModuleTwo.psd1 │ └── TestModuleTwo.psm1 ├── GitVersion.yml ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── ReBuild.ps1 ├── RequiredModules.psd1 ├── Source/ │ ├── Configuration.psd1 │ ├── Header/ │ │ └── param.ps1 │ ├── Private/ │ │ ├── InitializeStoragePaths.ps1 │ │ └── ParameterBinder.ps1 │ └── Public/ │ ├── Export-Configuration.ps1 │ ├── Get-ConfigurationPath.ps1 │ ├── Get-ParameterValue.ps1 │ ├── Import-Configuration.ps1 │ └── Import-ParameterConfiguration.ps1 ├── Specs/ │ ├── Configuration.Steps.ps1 │ ├── Configuration.feature │ ├── ConfiguredParameters.feature │ ├── DefaultParameters.feature │ ├── Layering.feature │ ├── LocalStoragePath.feature │ ├── LocalStoragePathLinux.feature │ ├── Manifest.feature │ ├── ScriptAnalyzer.Steps.ps1 │ ├── ScriptAnalyzer.feature │ ├── Serialization.feature │ └── TestVersion.feature ├── Test.ps1 ├── bootstrap.ps1 └── build.psd1