We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05efc0 commit 24e00b5Copy full SHA for 24e00b5
build.cake
@@ -27,8 +27,9 @@ Task("GitVersion")
27
.Does(() =>
28
{
29
var gitVersion = GitVersion();
30
-
31
version += $"-preview{gitVersion.BuildMetaData}";
+
32
+ Information($"Version: {Version}");
33
});
34
35
Task("Clean")
@@ -93,6 +94,8 @@ Task("Publish-Nuget")
93
94
}
95
96
var nupkgFile = $"{buildDir}/FluentAssertions.BestPractices/FluentAssertions.BestPractices.{version}.nupkg";
97
+ Information($"Publishing nupkg file '{nupkgFile}'...");
98
99
NuGetPush(nupkgFile, new NuGetPushSettings
100
101
ApiKey = apiKey,
0 commit comments