Summary of the new feature / enhancement
I'm developing a (script based) extension for SecretManagement. Currently any code change needs a restart of the terminal. In earlier versions Register-SecretVault did a Import-Module -Force but I'm afraid that's gone with the new runspace design.
Expected Behavior
Register-SecretVault -Name MySafe -ModuleName $modulePath -AllowClobber
# Do some Changes in the code
Register-SecretVault -Name MySafe -ModuleName $modulePath -AllowClobber
# Changed code is executed
Actual behavior
Register-SecretVault -Name MySafe -ModuleName $modulePath -AllowClobber
# Do some Changes in the code
Register-SecretVault -Name MySafe -ModuleName $modulePath -AllowClobber
# Old code is executed
Proposed technical implementation details (optional)
No response
Summary of the new feature / enhancement
I'm developing a (script based) extension for SecretManagement. Currently any code change needs a restart of the terminal. In earlier versions
Register-SecretVaultdid aImport-Module -Forcebut I'm afraid that's gone with the new runspace design.Expected Behavior
Actual behavior
Proposed technical implementation details (optional)
No response