Build .exe file in .NET Core RC2
There are actually 2 app models in .NET Core: Portable apps: heavily inspired by “DNX console apps”, these apps don’t produce .exe files and are instead executed by the .NET Core shared runtime (whose version is defined by the Microsoft.NETCore.App package, thanks to its special type: platform attribute). The corresponding .NET Core runtime must be … Read more