When I try to run a command like
ncover-console.exe /report-name:test /recurse:"c:\foo\*.cs"
I get an exception saying 'arguments should be in form /key:"value"'
Email: oliver@sturmnet.org
Logged In: NO
In ncover 1.0.1 you may change file src\NCover\Utilities\Arguments.cs, lines 185-187 was: string [] bits = arg.Split(':');
if \(arg\[0\] \!= '/' || bits.Length > 2\)
new: string [] bits = arg.Split(new char[] {':'}, 2);
if \(arg\[0\] \!= '/' || bits.Length \!= 2\)
Log in to post a comment.
Logged In: NO
In ncover 1.0.1 you may change file
src\NCover\Utilities\Arguments.cs, lines 185-187
was:
string [] bits = arg.Split(':');
new:
string [] bits = arg.Split(new char[] {':'}, 2);