Add explicit note about JSON output

This commit is contained in:
Matt Nadareski
2023-01-16 22:12:54 -08:00
parent 2c979f291e
commit 3f2adfcf62

View File

@@ -156,12 +156,15 @@ namespace Test
#region Information
#if NET6_0_OR_GREATER
case "-j":
case "--json":
#if NET6_0_OR_GREATER
options.Json = true;
break;
#else
Console.WriteLine("JSON output not available in .NET Framework 4.8");
#endif
break;
#endregion