5 references to ParserFactory
Microsoft.TemplateEngine.Cli (5)
Commands\create\InstantiateCommand.cs (2)
414System.CommandLine.Command parser = ParserFactory.CreateParser(command); 415ParseResult parseResult = parser.Parse(args.RemainingArguments ?? Array.Empty<string>(), ParserFactory.ParserConfiguration);
Commands\create\InstantiateCommand.NoMatchHandling.cs (1)
188ParseResult result = ParserFactory.CreateParser(reparseCommand).Parse(args.RemainingArguments ?? Array.Empty<string>());
Commands\create\InstantiateCommand.TabCompletion.cs (2)
63System.CommandLine.Command parser = ParserFactory.CreateParser(command); 67ParseResult parseResult = parser.Parse(context.CommandLineText, ParserFactory.ParserConfiguration);