-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support relative paths #118
Comments
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Filing a separate issue (per #111 (comment)) to avoid a scope creep
The text was updated successfully, but these errors were encountered: