Skip to content

Commit 583f7a3

Browse files
author
Cédric Belin
committed
Add the "outdated" task [skip ci]
1 parent b9027ab commit 583f7a3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.cake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Task("format")
2020
.Description("Formats the source code.")
2121
.DoesForEach(["src", "test"], project => DotNetFormat(project));
2222

23+
Task("outdated")
24+
.Description("Checks for outdated dependencies.")
25+
.Does(() => DotNetListPackage("Akismet.slnx", new() { Outdated = true }));
26+
2327
Task("publish")
2428
.Description("Publishes the package.")
2529
.WithCriteria(release, @"the ""Release"" configuration must be enabled")

0 commit comments

Comments
 (0)