7 instantiations of DependencyAnalysisLogDetail
Microsoft.Build.Engine (7)
Engine\TargetDependencyAnalyzer.cs (7)
947dependencyAnalysisDetailEntry = new DependencyAnalysisLogDetail(arbitraryInput, oldestOutput, null, null, OutofdateReason.MissingOutput); 975dependencyAnalysisDetailEntry = new DependencyAnalysisLogDetail(arbitraryInput, candidateOutput, null, null, OutofdateReason.MissingOutput); 1011dependencyAnalysisDetailEntry = new DependencyAnalysisLogDetail(unescapedInput, oldestOutput, null, null, OutofdateReason.MissingInput); 1019dependencyAnalysisDetailEntry = new DependencyAnalysisLogDetail(unescapedInput, oldestOutput, null, null, OutofdateReason.NewerInput); 1110this.dependencyAnalysisDetail.Add(new DependencyAnalysisLogDetail(input, output, inputItemName, outputItemName, OutofdateReason.MissingInput)); 1114this.dependencyAnalysisDetail.Add(new DependencyAnalysisLogDetail(input, output, inputItemName, outputItemName, OutofdateReason.MissingOutput)); 1118this.dependencyAnalysisDetail.Add(new DependencyAnalysisLogDetail(input, output, inputItemName, outputItemName, OutofdateReason.NewerInput));
8 references to DependencyAnalysisLogDetail
Microsoft.Build.Engine (8)
Engine\TargetDependencyAnalyzer.cs (7)
297foreach (DependencyAnalysisLogDetail logDetail in this.dependencyAnalysisDetail) 307foreach (DependencyAnalysisLogDetail logDetail in this.dependencyAnalysisDetail) 319internal static string GetFullBuildReason(DependencyAnalysisLogDetail logDetail) 345private static string GetIncrementalBuildReason(DependencyAnalysisLogDetail logDetail) 540DependencyAnalysisLogDetail dependencyAnalysisDetailEntry; 731DependencyAnalysisLogDetail dependencyAnalysisDetailEntry; 914internal static bool IsAnyOutOfDate(out DependencyAnalysisLogDetail dependencyAnalysisDetailEntry, string projectDirectory, IList inputs, IList outputs)
Solution\SolutionWrapperProject.cs (1)
284DependencyAnalysisLogDetail dependencyAnalysisDetail;