You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 codeRegister-SecretVault-Name MySafe -ModuleName $modulePath-AllowClobber
# Changed code is executed
Actual behavior
Register-SecretVault-Name MySafe -ModuleName $modulePath-AllowClobber
# Do some Changes in the codeRegister-SecretVault-Name MySafe -ModuleName $modulePath-AllowClobber
# Old code is executed