The foundational work of parsing the dependency file has been completed but it would be nice if we could construct the requirements.psd1 file in a more powershell-y way.
As an enhancement, would it be possible to use a Add-PSDepend to add a dependency to the requirements file?
e.g.
Add-PSDepend -PSGallery 'psake' -Version 'latest'
or short version
Add-PSDepend 'psake' 'latest'
Add-PSDepend -github 'RamblingCookieMonster/PowerShell' -ref 'master'
The foundational work of parsing the dependency file has been completed but it would be nice if we could construct the
requirements.psd1file in a more powershell-y way.As an enhancement, would it be possible to use a
Add-PSDependto add a dependency to the requirements file?e.g.