Browse Source

SD2-762. Output from NAnt sent to the standard error stream is now displayed in the output window.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1306 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 20 years ago
parent
commit
85f2440e87
  1. 1
      src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs

1
src/AddIns/Misc/NAntAddIn/Project/Src/NAntRunner.cs

@ -185,6 +185,7 @@ namespace ICSharpCode.NAntAddIn @@ -185,6 +185,7 @@ namespace ICSharpCode.NAntAddIn
if (OutputLineReceived != null) {
runner.OutputLineReceived += new LineReceivedEventHandler(OnOutputLineReceived);
runner.ErrorLineReceived += new LineReceivedEventHandler(OnOutputLineReceived);
}
runner.Start(nantFileName, arguments);
OnNAntStarted();

Loading…
Cancel
Save