Skip to content

Commit

Permalink
Code quality improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasvajk committed Apr 25, 2024
1 parent 15c1fd9 commit dd9183c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ public bool AddPackage(string folder, string package)
return dotnetCliInvoker.RunCommand(args);
}

public IList<string> GetListedRuntimes() => GetResultList("--list-runtimes", null, true);
public IList<string> GetListedRuntimes() => GetResultList("--list-runtimes");

public IList<string> GetListedSdks() => GetResultList("--list-sdks", null, true);
public IList<string> GetListedSdks() => GetResultList("--list-sdks");

private IList<string> GetResultList(string args, string? workingDirectory = null, bool silent = true)
{
Expand Down

0 comments on commit dd9183c

Please sign in to comment.