Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Add line break for better debug experience (#700)
Browse files Browse the repository at this point in the history
Without this you get `Registered .NET SDK.Loading project` with no space between commands or break.
  • Loading branch information
David Henley authored Oct 13, 2020
1 parent 5c014b6 commit 394cdd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Tye.Core/ProjectReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private static void EnsureMSBuildRegistered(OutputContext? output, FileInfo proj
try
{
MSBuildLocator.RegisterInstance(instance);
output?.WriteDebug("Registered .NET SDK.");
output?.WriteDebugLine("Registered .NET SDK.");
}
finally
{
Expand Down

0 comments on commit 394cdd4

Please sign in to comment.