7 instantiations of DependencyAnalysisLogDetail
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (7)
1001
dependencyAnalysisDetailEntry = new
DependencyAnalysisLogDetail
(arbitraryInput, oldestOutput, null, null, OutofdateReason.MissingOutput);
1027
dependencyAnalysisDetailEntry = new
DependencyAnalysisLogDetail
(arbitraryInput, candidateOutput, null, null, OutofdateReason.MissingOutput);
1059
dependencyAnalysisDetailEntry = new
DependencyAnalysisLogDetail
(unescapedInput, oldestOutput, null, null, OutofdateReason.MissingInput);
1067
dependencyAnalysisDetailEntry = new
DependencyAnalysisLogDetail
(unescapedInput, oldestOutput, null, null, OutofdateReason.NewerInput);
1168
_dependencyAnalysisDetail.Add(new
DependencyAnalysisLogDetail
(input, output, inputItemName, outputItemName, OutofdateReason.MissingInput));
1172
_dependencyAnalysisDetail.Add(new
DependencyAnalysisLogDetail
(input, output, inputItemName, outputItemName, OutofdateReason.MissingOutput));
1176
_dependencyAnalysisDetail.Add(new
DependencyAnalysisLogDetail
(input, output, inputItemName, outputItemName, OutofdateReason.NewerInput));
12 references to DependencyAnalysisLogDetail
Microsoft.Build (10)
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (10)
284
foreach (
DependencyAnalysisLogDetail
logDetail in _dependencyAnalysisDetail)
301
foreach (
DependencyAnalysisLogDetail
logDetail in _dependencyAnalysisDetail)
313
internal static string GetFullBuildReason(
DependencyAnalysisLogDetail
logDetail)
339
private static string GetIncrementalBuildReason(
DependencyAnalysisLogDetail
logDetail)
563
bool someOutOfDate = IsAnyOutOfDate(out
DependencyAnalysisLogDetail
dependencyAnalysisDetailEntry, _project.Directory, inputs, outputs);
660
bool someOutOfDate = IsAnyOutOfDate(out
DependencyAnalysisLogDetail
dependencyAnalysisDetailEntry, _project.Directory, upToDateInputItems, outputItems);
761
bool someOutOfDate = IsAnyOutOfDate(out
DependencyAnalysisLogDetail
dependencyAnalysisDetailEntry, _project.Directory, inputs, outputs);
961
internal static bool IsAnyOutOfDate<T>(out
DependencyAnalysisLogDetail
dependencyAnalysisDetailEntry, string projectDirectory, IList<T> inputs, IList<T> outputs)
1247
private readonly List<
DependencyAnalysisLogDetail
> _dependencyAnalysisDetail = new List<
DependencyAnalysisLogDetail
>();
Microsoft.Build.Engine.UnitTests (2)
BackEnd\TargetUpToDateChecker_Tests.cs (2)
931
DependencyAnalysisLogDetail
detail;
1073
DependencyAnalysisLogDetail
detail;