I'm a super-beginner coder and trying to follow a training video on C# in Visual Studio 2015. The tutorial has me do a new Visual C# project as a Console Application. When I run my code using Ctrl+F5, it launches my code in the console as expected, but the Output --> Show output from build window is completely empty.
I've scoured this site and others for a solution. These are my current VS2015 settings, I've tried changing these with no success:
- Show Output window when build starts is CHECKED
- Redirect all Output Window text to the Immediate Window is UNchecked.
This is the code, verbatim what is shown in the tutorial:
using System;
namespace Hello
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World");
}
}
}
When the same code is run in the tutorial, the resulting output appears immediately in the Output window:
1>------ Build started: Project: Hello, Configuration: Debug Any CPU ------
1> Hello -> c:\users\[name]\documents\visual studio 2015\Projects\Hello\Hello\bin\Debug\Hello.exe
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
I can see my Output window and I expect to receive this, but I get nothing. First time using Visual Studio, what am I missing?