5 references to Parse
dotnet-watch (1)
Program.cs (1)
70var options = CommandLineOptions.Parse(args, parsingLoggerFactory.CreateLogger(LogComponentName), console.Out, out errorCode);
dotnet-watch.Tests (4)
CommandLine\CommandLineOptionsTests.cs (3)
18var options = CommandLineOptions.Parse(args, _testLogger, output: output, errorCode: out var errorCode); 31var options = CommandLineOptions.Parse(args, _testLogger, output: output, errorCode: out var errorCode); 48var options = CommandLineOptions.Parse(args, _testLogger, output: output, errorCode: out var errorCode);
TestUtilities\TestOptions.cs (1)
21=> CommandLineOptions.Parse(args, NullLogger.Instance, TextWriter.Null, out _) ?? throw new InvalidOperationException();