Skip to content

Commit 24e00b5

Browse files
committed
build.cake logging
1 parent d05efc0 commit 24e00b5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.cake

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ Task("GitVersion")
2727
.Does(() =>
2828
{
2929
var gitVersion = GitVersion();
30-
3130
version += $"-preview{gitVersion.BuildMetaData}";
31+
32+
Information($"Version: {Version}");
3233
});
3334

3435
Task("Clean")
@@ -93,6 +94,8 @@ Task("Publish-Nuget")
9394
}
9495

9596
var nupkgFile = $"{buildDir}/FluentAssertions.BestPractices/FluentAssertions.BestPractices.{version}.nupkg";
97+
Information($"Publishing nupkg file '{nupkgFile}'...");
98+
9699
NuGetPush(nupkgFile, new NuGetPushSettings
97100
{
98101
ApiKey = apiKey,

0 commit comments

Comments
 (0)