From f58003b3fcf1f451e5a1af57d032f0e92c90c2b9 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 13 Nov 2025 13:59:25 -0500 Subject: [PATCH] Ensure JSON added to help print --- ProtectionScan/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProtectionScan/Program.cs b/ProtectionScan/Program.cs index 8154ed82..7931db2d 100644 --- a/ProtectionScan/Program.cs +++ b/ProtectionScan/Program.cs @@ -71,6 +71,10 @@ namespace ProtectionScan commandSet.Add(new Help(["-?", "-h", "--help"])); commandSet.Add(mainFeature.DebugInput); +#if NETCOREAPP + commandSet.Add(mainFeature.JsonInput); + commandSet.Add(mainFeature.NestedInput); +#endif commandSet.Add(mainFeature.NoContentsInput); commandSet.Add(mainFeature.NoArchivesInput); commandSet.Add(mainFeature.NoPathsInput);