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 b9027ab commit 583f7a3Copy full SHA for 583f7a3
build.cake
@@ -20,6 +20,10 @@ Task("format")
20
.Description("Formats the source code.")
21
.DoesForEach(["src", "test"], project => DotNetFormat(project));
22
23
+Task("outdated")
24
+ .Description("Checks for outdated dependencies.")
25
+ .Does(() => DotNetListPackage("Akismet.slnx", new() { Outdated = true }));
26
+
27
Task("publish")
28
.Description("Publishes the package.")
29
.WithCriteria(release, @"the ""Release"" configuration must be enabled")
0 commit comments