Joseph Musser

Results 395 comments of Joseph Musser

> So each argument should be quoted using this? **No.** Please see https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/. If the path ever happens to end in a backslash, it escapes the ending quote and you're...

In my opinion, Cake should deprecate AppendQuoted and **autoquote everything passed to Append if necessary**. The problem has been rampant every time I've looked. My `EscapeProcessArgument` implementation can either quote...

dotnet/corefx#23592 is a very insightful discussion and I hope Cake takes notice. Windows is weird in that all the arguments are stuffed in a single string. Linux actually passes processes...

This has been an ongoing concern of mine with the entirety of Cake. I started work towards addressing the naive quoting issue but my plate is way overfull. I sincerely...

@devlead Sounds good. I'm probably not up for it at this time, but maybe this proposal could interest someone else. Would you prefer this issue to be closed or stay...

Sweet! If I get to this before anyone else, I'll submit a PR that keeps the APIs the same and chooses `System.IO.Path.DirectorySeparatorChar`. While fixing the tests, we can see what...

Usually having two ways of doing the same thing comes at a cost. I'd be against it.

Framework PR is up: https://github.com/nunit/nunit/pull/2929

@CharliePoole Sorry, I was confused. Is there a page which documents all ITestEventListener XML formats? I'm starting from https://github.com/nunit/docs/wiki/Usage-Notes from the menu and not seeing it.

@rprouse Everything you've said sounds good!