Skip to content

Commit f767e4a

Browse files
committed
Final logging tweaks
1 parent 38cfce9 commit f767e4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var semVersion = isReleaseBuild ? version : (version + string.Concat("-build-",
5353
Setup(context =>
5454
{
5555
// Executed BEFORE the first task.
56-
Information("Building {0} [{1}] v{2} ({3}.", solution.GetFilename(), configuration, semVersion, target);
56+
Information("Building {0} [{1}] v{2} ({3})", solution.GetFilename(), configuration, semVersion, target);
5757

5858
if (!DirectoryExists(testResultsDir))
5959
{
@@ -68,7 +68,7 @@ Setup(context =>
6868
Teardown(context =>
6969
{
7070
// Executed AFTER the last task.
71-
Information("Built {0} [{1}] v{2} ({3}.", solution.GetFilename(), configuration, semVersion, target);
71+
Information("Built {0} [{1}] v{2} ({3})", solution.GetFilename(), configuration, semVersion, target);
7272
});
7373

7474
///////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)