Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the Linux Console Output When Using Remote Debug with Visual Studio 2017?

My Visual Studio 2017 (VS2017) connects to the Linux system successfully with the following code:

#include <cstdio>

int main()
{
    printf("hello from ConsoleApplication1!\n");
    return 0;
}

But, when the code executes, I can't see the "hello from ConsoleApplication1!" message in the VS2017 output window. Where can I find it?

like image 640
bigtang5 Avatar asked Jul 01 '17 02:07

bigtang5


1 Answers

I find it at last: Debug menu: Linux console

like image 174
bigtang5 Avatar answered Oct 06 '22 05:10

bigtang5