Skip to content

Commit

Permalink
Fix converting to xml
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubch1 committed Jun 16, 2020
1 parent 82bb3de commit 9376adb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ private XmlDocument GetXmlCoverage(AttachmentSet attachment)
{
FileName = GetCodeCoverageExePath(),
Arguments = $"analyze /include_skipped_functions /include_skipped_modules /output:\"{output}\" \"{attachment.Attachments.First().Uri.LocalPath}\"",
RedirectStandardOutput = true
RedirectStandardOutput = true,
UseShellExecute = false
});

string analysisOutput = analyze.StandardOutput.ReadToEnd();
Expand Down

0 comments on commit 9376adb

Please sign in to comment.