Open Bartleby2718 opened 6 months ago
Sample LINQPad code on Windows #116):
void Main()
{
Command.Run(
@"C:\Program Files\dotnet\dotnet.exe",
new[] { "--version" })
.GetOutputAndErrorLines()
.Dump();
}
but the following fails:
void Main()
{
Command.Run(
@".\dotnet.exe",
new[] { "--version" },
o => o.WorkingDirectory(@"C:\Program Files\dotnet\"))
.GetOutputAndErrorLines()
.Dump();
}
@madelson This doesn't have to be an option, right?
^A pull request has been staged. Will file a PR in this repo if all tests pass and the Mono PR is merged.
Filing a separate issue (per https://github.com/madelson/MedallionShell/pull/111#discussion_r1615359632) to avoid a scope creep