Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add up-to-date ETW for WriteLinesToFile #6670

Merged
merged 4 commits into from
Aug 10, 2021

Conversation

Forgind
Copy link
Member

@Forgind Forgind commented Jul 13, 2021

I looked through a trace of which tasks ran even for the second identical build. Many didn't have a "taskName," that is, _taskNode or _taskNode.Name was null, which surprised me. Of the rest, none in the MSBuild repo had up-to-date check behavior, as far as I could tell, except this one, so I added a check here. If I am correct, this finishes #6658

}

[Event(61, Keywords = Keywords.All)]
public void WriteLinesToFileUpToDateStop(string fileItemSpec)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public void WriteLinesToFileUpToDateStop(string fileItemSpec)
public void WriteLinesToFileUpToDateStop(string fileItemSpec, bool wasUpToDate)

src/Tasks/FileIO/WriteLinesToFile.cs Show resolved Hide resolved
{
Log.LogMessageFromResources(MessageImportance.Low, "WriteLinesToFile.ErrorReadingFile", File.ItemSpec);
}
MSBuildEventSource.Log.WriteLinesToFileUpToDateStop(File.ItemSpec);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
MSBuildEventSource.Log.WriteLinesToFileUpToDateStop(File.ItemSpec);
MSBuildEventSource.Log.WriteLinesToFileUpToDateStop(File.ItemSpec, false);

@Forgind Forgind added the merge-when-branch-open PRs that are approved, except that there is a problem that means we are not merging stuff right now. label Aug 9, 2021
@rokonec rokonec merged commit df9547e into dotnet:main Aug 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merge-when-branch-open PRs that are approved, except that there is a problem that means we are not merging stuff right now.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants