13 writes to TreatUnmatchedTokensAsErrors
aspire (4)
Commands\ExecCommand.cs (1)
68TreatUnmatchedTokensAsErrors = false;
Commands\PipelineCommandBase.cs (1)
110TreatUnmatchedTokensAsErrors = false;
Commands\RunCommand.cs (1)
126TreatUnmatchedTokensAsErrors = false;
Commands\StartCommand.cs (1)
41TreatUnmatchedTokensAsErrors = false;
Aspire.RuntimeIdentifier.Tool (1)
Program.cs (1)
19TreatUnmatchedTokensAsErrors = true
dotnet-suggest (1)
SuggestionDispatcher.cs (1)
72RootCommand.TreatUnmatchedTokensAsErrors = false;
dotnet-watch (1)
CommandLine\DotnetWatchCommandDefinition.cs (1)
84TreatUnmatchedTokensAsErrors = false;
Microsoft.DotNet.Cli.Definitions (4)
Commands\New\NewCommandDefinition.cs (1)
121TreatUnmatchedTokensAsErrors = true;
Commands\NuGet\NuGetCommandDefinition.cs (1)
32TreatUnmatchedTokensAsErrors = false;
Commands\Test\TestCommandDefinition.cs (1)
30TreatUnmatchedTokensAsErrors = false;
Commands\VSTest\VSTestCommandDefinition.cs (1)
28TreatUnmatchedTokensAsErrors = false;
Microsoft.DotNet.VersionTools.Cli (1)
Program.cs (1)
18TreatUnmatchedTokensAsErrors = true
Microsoft.TemplateEngine.Cli (1)
Commands\BaseCommand.cs (1)
80TreatUnmatchedTokensAsErrors = definition.TreatUnmatchedTokensAsErrors;
10 references to TreatUnmatchedTokensAsErrors
dotnet (1)
Extensions\ParseResultExtensions.cs (1)
51if (parseResult.CommandResult.Command.TreatUnmatchedTokensAsErrors
Microsoft.DotNet.Cli.Definitions (3)
Help\HelpBuilder.cs (2)
426if (!command.TreatUnmatchedTokensAsErrors) 464if (!context.Command.TreatUnmatchedTokensAsErrors)
Help\HelpBuilder.Default.cs (1)
215/// Writes a help section describing a command's additional arguments, typically shown only when <see cref="Command.TreatUnmatchedTokensAsErrors"/> is set to <see langword="true"/>.
Microsoft.TemplateEngine.Cli (1)
Commands\BaseCommand.cs (1)
80TreatUnmatchedTokensAsErrors = definition.TreatUnmatchedTokensAsErrors;
System.CommandLine (5)
Help\HelpBuilder.cs (2)
160if (!command.TreatUnmatchedTokensAsErrors) 189if (!context.Command.TreatUnmatchedTokensAsErrors)
Help\HelpBuilder.Default.cs (1)
287/// Writes a help section describing a command's additional arguments, typically shown only when <see cref="Command.TreatUnmatchedTokensAsErrors"/> is set to <see langword="true"/>.
Parsing\SymbolResultTree.cs (2)
68if (commandResult.Command.TreatUnmatchedTokensAsErrors) 70if (commandResult != rootCommandResult && !rootCommandResult.Command.TreatUnmatchedTokensAsErrors)