├── .ci ├── PSJob.yml └── PowerCD.yml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml.disabled ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── GitVersion.yml ├── LICENSE ├── PSModule.build.ps1 ├── PowerCD ├── PowerCD.bootstrap.ps1 ├── PowerCD.psd1 ├── PowerCD.psm1 ├── PowerCD.tasks.ps1 ├── Private │ ├── BootstrapPSGetBeta.ps1 │ ├── GenerateAzDevopsMatrix.ps1 │ ├── Merge-Hashtables.ps1 │ └── Select-Hashtable.ps1 ├── Public │ ├── Build-PowerCDModule.ps1 │ ├── Compress-PowerCDModule.ps1 │ ├── Get-PSModuleNugetDependencies.ps1 │ ├── Get-PowerCDPublicFunctions.ps1 │ ├── Get-PowerCDSetting.ps1 │ ├── Get-PowerCDVersion.ps1 │ ├── Import-Assembly.ps1 │ ├── Import-PowerCDRequirement.ps1 │ ├── Initialize-PowerCD.ps1 │ ├── Invoke-PowerCDClean.ps1 │ ├── New-PowerCDNugetPackage.ps1 │ ├── Remove-CommentsAndWhiteSpace.ps1 │ ├── Reset-WinPSModules.ps1 │ ├── Resolve-PowerCDModuleManifest.ps1 │ ├── Set-PowerCDVersion.ps1 │ ├── Test-PowerCDPester.ps1 │ └── Update-PowerCDPublicFunctions.ps1 └── lib │ └── Newtonsoft.Json.dll ├── README.md ├── Tests └── 00_PSModule.tests.ps1 ├── appveyor.yml └── azure-pipelines.yml /.ci/PSJob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.ci/PSJob.yml -------------------------------------------------------------------------------- /.ci/PowerCD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.ci/PowerCD.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/LICENSE -------------------------------------------------------------------------------- /PSModule.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PSModule.build.ps1 -------------------------------------------------------------------------------- /PowerCD/PowerCD.bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/PowerCD.bootstrap.ps1 -------------------------------------------------------------------------------- /PowerCD/PowerCD.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/PowerCD.psd1 -------------------------------------------------------------------------------- /PowerCD/PowerCD.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/PowerCD.psm1 -------------------------------------------------------------------------------- /PowerCD/PowerCD.tasks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/PowerCD.tasks.ps1 -------------------------------------------------------------------------------- /PowerCD/Private/BootstrapPSGetBeta.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Private/BootstrapPSGetBeta.ps1 -------------------------------------------------------------------------------- /PowerCD/Private/GenerateAzDevopsMatrix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Private/GenerateAzDevopsMatrix.ps1 -------------------------------------------------------------------------------- /PowerCD/Private/Merge-Hashtables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Private/Merge-Hashtables.ps1 -------------------------------------------------------------------------------- /PowerCD/Private/Select-Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Private/Select-Hashtable.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Build-PowerCDModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Build-PowerCDModule.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Compress-PowerCDModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Compress-PowerCDModule.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Get-PSModuleNugetDependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Get-PSModuleNugetDependencies.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Get-PowerCDPublicFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Get-PowerCDPublicFunctions.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Get-PowerCDSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Get-PowerCDSetting.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Get-PowerCDVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Get-PowerCDVersion.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Import-Assembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Import-Assembly.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Import-PowerCDRequirement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Import-PowerCDRequirement.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Initialize-PowerCD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Initialize-PowerCD.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Invoke-PowerCDClean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Invoke-PowerCDClean.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/New-PowerCDNugetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/New-PowerCDNugetPackage.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Remove-CommentsAndWhiteSpace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Remove-CommentsAndWhiteSpace.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Reset-WinPSModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Reset-WinPSModules.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Resolve-PowerCDModuleManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Resolve-PowerCDModuleManifest.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Set-PowerCDVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Set-PowerCDVersion.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Test-PowerCDPester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Test-PowerCDPester.ps1 -------------------------------------------------------------------------------- /PowerCD/Public/Update-PowerCDPublicFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/Public/Update-PowerCDPublicFunctions.ps1 -------------------------------------------------------------------------------- /PowerCD/lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/PowerCD/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/README.md -------------------------------------------------------------------------------- /Tests/00_PSModule.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/Tests/00_PSModule.tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustinGrote/PowerCD/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------