1 instantiation of TerminalProjectInfo
Microsoft.Build (1)
Logging\TerminalLogger\TerminalLogger.cs (1)
660TerminalProjectInfo projectInfo = new(c, evalInfo, CreateStopwatch?.Invoke());
12 references to TerminalProjectInfo
Microsoft.Build (12)
Logging\TerminalLogger\TerminalLogger.cs (11)
104private readonly Dictionary<ProjectContext, TerminalProjectInfo> _projects = new(); 604foreach (TerminalProjectInfo project in _projects.Values.Where(p => p.HasErrorsOrWarnings)) 660TerminalProjectInfo projectInfo = new(c, evalInfo, CreateStopwatch?.Invoke()); 698if (_projects.TryGetValue(c, out TerminalProjectInfo? project)) 885private static string GetProjectFinishedHeader(TerminalProjectInfo project, string buildResult, string duration) 950if (_restoreContext is null && buildEventContext is not null && _projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project)) 1004&& _projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project)) 1038if (_projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project)) 1060var hasProject = _projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project); 1212&& _projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project) 1297&& _projects.TryGetValue(new ProjectContext(buildEventContext), out TerminalProjectInfo? project)
Logging\TerminalLogger\TerminalProjectInfo.cs (1)
30/// Initialized a new <see cref="TerminalProjectInfo"/> with the given <paramref name="evalInfo"/> .