2 parents 604c3fe + c9d7f35 commit 7b668aeCopy full SHA for 7b668ae
1 file changed
src/CommandLine/Commands/Where.cs
@@ -28,7 +28,7 @@ public WhereCommand(XRepoEnvironment environment)
28
var packageRegistration = environment.PackageRegistry.GetPackage(name)
29
?? throw new CommandFailureException(12, $"No package with name '{name}' is registered. Have you ever built it on this machine?");
30
31
- Console.Out.WriteList("packages", packageRegistration.Projects.OrderByDescending(p => p.Timestamp).Select(p => p.OutputPath));
+ Console.Out.WriteList("", packageRegistration.Projects.OrderByDescending(p => p.Timestamp).Select(p => p.ProjectPath));
32
});
33
}
34
0 commit comments