From 78dd6f24bb3d8b5fb810c40b190a0aa035445b6a Mon Sep 17 00:00:00 2001 From: Joe DeCock Date: Tue, 20 Aug 2024 15:48:58 -0500 Subject: [PATCH] Use ` instead of * for shell command to avoid formatted qutotes Regular quotes were getting turned into fancy curly quotes that aren't syntactically valid. --- IdentityServer/v7/docs/content/troubleshooting/wilson.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IdentityServer/v7/docs/content/troubleshooting/wilson.md b/IdentityServer/v7/docs/content/troubleshooting/wilson.md index 824f5b29..1fb4faa4 100644 --- a/IdentityServer/v7/docs/content/troubleshooting/wilson.md +++ b/IdentityServer/v7/docs/content/troubleshooting/wilson.md @@ -11,7 +11,7 @@ Errors that we have seen because of IdentityModel version mismatches include: * System.MissingMethodException: Method not found 'Boolean Microsoft.IdentityModel.Tokens.TokenUtilities.IsRecoverableConfiguration(...)' ## Diagnosing -Run this command in powershell: *dotnet list package --include-transitive | sls "Microsoft.IdentityModel|System.IdentityModel"* +Run this command in powershell: `dotnet list package --include-transitive | sls "Microsoft.IdentityModel|System.IdentityModel"` The output should look something like this: ```txt @@ -33,4 +33,4 @@ To fix this, add explicit package references to upgrade the packages that are of -``` \ No newline at end of file +```