Skip to content

Commit

Permalink
Explain why we cannot filter the newest import path
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Jul 27, 2023
1 parent e0a2ef0 commit db96b95
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,8 @@ public UpToDateCheckImplicitConfiguredInput Update(
// The first item in this semicolon-separated list of project files will always be the one
// with the newest timestamp. As we are only interested in timestamps on these files, we can
// save memory and time by only considering this first path (dotnet/project-system#4333).
// Note that we cannot exclude this path using the ProjectFileClassifier, as doing so may
// miss other imports of interest.
string? newestImportInput = new LazyStringSplit(msBuildAllProjects, ';').FirstOrDefault();

ProjectFileClassifier? projectFileClassifier = null;
Expand Down

0 comments on commit db96b95

Please sign in to comment.