I press Ctrl + Shift + N to create a new project. Then I chose Other Languages/Visual C#: Console App (.NET Core)
and press OK.
In the .csproj file created, there is a line: <OutputType>Exe</OutputType>
. But then, when I press F7 - the output shows this:
1>------ Build started: Project: ConsoleApp3, Configuration: Debug Any CPU ------
1>ConsoleApp3 -> C:\Users\*MyUserName*\source\repos\ConsoleApp3\ConsoleApp3\bin\Debug\netcoreapp2.0\ConsoleApp3.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
So, it created a .dll file. But how do I get the .exe file? Just renaming .dll file doesn't work; it doesn't open then.