conan-io / conan-vs-extension

Conan Extension for Visual Studio
https://marketplace.visualstudio.com/items?itemName=conan-io.conan-vs-extension
MIT License
59 stars 34 forks source link

Output from stdout and stderr mixed #146

Closed jgsogo closed 4 months ago

jgsogo commented 5 years ago

We need to redirect stderr to stdout and capture only stdout to ensure that lines corresponding to them don't get mixed in the final output window or log file

SSE4 commented 5 years ago

there are some suggestions to use OutputDataReceived: https://stackoverflow.com/questions/52088894/when-run-a-program-in-c-all-the-messages-go-to-the-standard-output-but-the-st

jgsogo commented 5 years ago

Found this snippet: https://stackoverflow.com/a/38882348/837816, maybe it is enough.