Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When attempting to invoke the basic `Connect-Safeguard` command, one could get the following error, depending on your environment (Windows and PowerShell version): > Metadata file 'System.Security.Cryptography.dll' could not be found. safeguard-ps.psm1:82 I believe, when running under Windows with PowerShell 5.1, it's using just the regular .NET Framework, so no explicit reference to `System.Security.Cryptography.dll` is needed. Unlike with PowerShell Core. After fixing that problem, we immediately ran into another error that may again be a difference between PowerShell and PowerShell Core. > Unexpected character '$' string accessTokenUri = $"https://{_appli... It seems the C# string interpolation is not supported, at least in this version of PowerShell. So we'll just use the old `string.Format()` method.
- Loading branch information