From 4c875d2ef6463cbb2a9244468f03d2e60030ed45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Mon, 15 Dec 2025 11:11:04 +0100 Subject: [PATCH] Fix internal binary break --- .../CommandLine/CommandLineOption.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs b/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs index 32dfc8070c..50af528077 100644 --- a/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs +++ b/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs @@ -41,6 +41,19 @@ internal CommandLineOption(string name, string description, ArgumentArity arity, ObsolescenceMessage = obsolescenceMessage; } + /// + /// Initializes a new instance of the class. + /// + /// The name of the command line option. + /// The description of the command line option. + /// The arity of the command line option. + /// Indicates whether the command line option is hidden. + /// Indicates whether the command line option is built-in. + internal CommandLineOption(string name, string description, ArgumentArity arity, bool isHidden, bool isBuiltIn) + : this(name, description, arity, isHidden, isBuiltIn, null) + { + } + /// /// Initializes a new instance of the class. ///