From 3f2adfcf62fe8658e8ab7cad81e4eb67365ab59e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 16 Jan 2023 22:12:54 -0800 Subject: [PATCH] Add explicit note about JSON output --- Test/Options.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Test/Options.cs b/Test/Options.cs index 1227d1e1..86162a4c 100644 --- a/Test/Options.cs +++ b/Test/Options.cs @@ -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