Skip to content

Commit

Permalink
Minor log change
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansjones committed Aug 3, 2018
1 parent 220bcff commit 16b54fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var semVersion = isReleaseBuild ? version : (version + string.Concat("-build-",
Setup(context =>
{
// Executed BEFORE the first task.
Information("Building {0} [{1}] ({2} - {3}).", solution.GetFilename(), configuration, version, semVersion);
Information("Building {0} [{1}] v{2}).", solution.GetFilename(), configuration, semVersion);

if (!DirectoryExists(testResultsDir))
{
Expand All @@ -68,7 +68,7 @@ Setup(context =>
Teardown(context =>
{
// Executed AFTER the last task.
Information("Built {0} [{1}] ({2} - {3}).", solution.GetFilename(), configuration, version, semVersion);
Information("Building {0} [{1}] v{2}).", solution.GetFilename(), configuration, semVersion);
});

///////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 16b54fb

Please sign in to comment.