Why Did .NET Core Build A .dll and not an .exe?
Started playing with .NET Core and, typical developer, didn’t read any docs first. Installed the tools, created a new project and typed Console.WriteLine(“Hello world.”). And what did I get when I compiled? A .dll? Weird. There was a public static void main(). What did I do wrong? Well, I went and read some docs, in particular, this one: https://dotnet.github.io/docs/getting-started/cli-console-app-tutorial.
[Read More]