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

Emit relative path to output #8692

Merged
merged 5 commits into from
Apr 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/MSBuild/LiveLogger/LiveLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public override string ToString()
/// </summary>
private DateTime _buildStartTime;

/// <summary>
/// The working directory when the build starts, to trim relative output paths.
/// </summary>
private readonly string _initialWorkingDirectory = Environment.CurrentDirectory;

/// <summary>
/// True if the build has encountered at least one error.
/// </summary>
Expand Down Expand Up @@ -468,6 +473,12 @@ private void MessageRaised(object sender, BuildMessageEventArgs e)
_projects.TryGetValue(new ProjectContext(buildEventContext), out Project? project))
{
ReadOnlyMemory<char> outputPath = e.Message.AsMemory().Slice(index + 4);

if (outputPath.Span.Slice(0, _initialWorkingDirectory.Length).SequenceEqual(_initialWorkingDirectory.AsSpan()))
rainersigwald marked this conversation as resolved.
Show resolved Hide resolved
{
outputPath = outputPath.Slice(_initialWorkingDirectory.Length + 1);
}
rainersigwald marked this conversation as resolved.
Show resolved Hide resolved

project.OutputPath = outputPath;
}
}
Expand Down