Skip to content

Commit db051b0

Browse files
author
Cédric Belin
committed
Fix the "outdated" task
1 parent 583f7a3 commit db051b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Task("format")
2222

2323
Task("outdated")
2424
.Description("Checks for outdated dependencies.")
25-
.Does(() => DotNetListPackage("Akismet.slnx", new() { Outdated = true }));
25+
.Does(() => StartProcess("dotnet", new ProcessSettings { Arguments = "list package --outdated" }));
2626

2727
Task("publish")
2828
.Description("Publishes the package.")

0 commit comments

Comments
 (0)