1 write to IsSuccess
dotnet (1)
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
234IsSuccess = isSuccess;
8 references to IsSuccess
dotnet (8)
Commands\Tool\Execute\ToolExecuteCommand.cs (1)
85if (!restoreResult.IsSuccess)
Commands\Tool\Restore\ToolRestoreCommand.cs (7)
131if (toolRestoreResults.Any(r => !r.IsSuccess)) 136toolRestoreResults.Where(r => !r.IsSuccess).Select(r => r.Message)).Red()); 138var successMessage = toolRestoreResults.Where(r => r.IsSuccess).Select(r => r.Message); 145var warnings = toolRestoreResults.Where(r => r.IsSuccess && !string.IsNullOrEmpty(r.Warning)).Select(r => r.Warning); 154(toolRestoreResults.Any(r => r.IsSuccess) 163toolRestoreResults.Where(r => r.IsSuccess).Select(r => r.Message))); 166var warnings = toolRestoreResults.Where(r => r.IsSuccess && !string.IsNullOrEmpty(r.Warning)).Select(r => r.Warning);