private static async Task <int> SlnListAsync(SlnListCommandLineOptions options) { if (!options.TryGetProjectFilter(out ProjectFilter projectFilter)) { return(1); } var command = new SlnListCommand(options, projectFilter); CommandResult result = await command.ExecuteAsync(options.Path, options.MSBuildPath, options.Properties); return((result.Kind == CommandResultKind.Success) ? 0 : 1); }
private static async Task <int> SlnListAsync(SlnListCommandLineOptions options) { if (!options.TryGetLanguage(out string language)) { return(1); } var executor = new SlnListCommandExecutor(options, language); CommandResult result = await executor.ExecuteAsync(options.Path, options.MSBuildPath, options.Properties); return((result.Kind == CommandResultKind.Success) ? 0 : 1); }
private static async Task <int> SlnListAsync(SlnListCommandLineOptions options) { if (!options.TryGetProjectFilter(out ProjectFilter projectFilter)) { return(ExitCodes.Error); } var command = new SlnListCommand(options, projectFilter); CommandResult result = await command.ExecuteAsync(options.Path, options.MSBuildPath, options.Properties); return(GetExitCode(result)); }
private static async Task <int> SlnListAsync(SlnListCommandLineOptions options) { if (!options.TryGetProjectFilter(out ProjectFilter projectFilter)) { return(ExitCodes.Error); } if (!TryParsePaths(options.Paths, out ImmutableArray <string> paths)) { return(ExitCodes.Error); } var command = new SlnListCommand(options, projectFilter); CommandStatus status = await command.ExecuteAsync(paths, options.MSBuildPath, options.Properties); return(GetExitCode(status)); }
public SlnListCommand(SlnListCommandLineOptions options, in ProjectFilter projectFilter) : base(projectFilter)
public SlnListCommandExecutor(SlnListCommandLineOptions options, string language) : base(language) { Options = options; }