We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The file produced by the tool contains some non-xml information.
dodikk$ cat deployment/UnitTestReport.xml [Local Date/Time: 10/20/2014 4:49:58 PM] [Remote Address: 10.38.11.5:51938] <?xml version="1.0" encoding="utf-8" standalone="no"?> <!--This file represents the results of running a test suite-->
For this reason, the output cannot be used with Jenkins NUnit plug-in as is. Not sure why socket is preferred over Console.WriteLine
Console.WriteLine
string header = String.Format ("[Local Date/Time:\t{1}]{0}[Remote Address:\t{2}]{0}", Environment.NewLine, DateTime.Now, remote); byte[] array = Encoding.UTF8.GetBytes (header); fs.Write (array, 0, array.Length); fs.Flush ();
The text was updated successfully, but these errors were encountered:
Alternate fix proposed in this PR: #43
Sorry, something went wrong.
No branches or pull requests
The file produced by the tool contains some non-xml information.
For this reason, the output cannot be used with Jenkins NUnit plug-in as is.
Not sure why socket is preferred over
Console.WriteLine
The text was updated successfully, but these errors were encountered: