.NET Core supports many different types of project templates. This week, I thought I would go through the major project templates available in version 1.0 of the .NET Core SDK, giving a brief explanation of each.
Bundling compiled code together is done in libraries. These can be DLLs (in Windows land) or so files in Unix-like OSs. This week we look at how to build a class library in .NET Core and how to reference it in a preexisting application.
A deep dive into the files which make up the default Hello, World application. These files are created when you issue the "dotnet new" command at the terminal. NOTE: This was correct a the time of posting, but changes in the SDK have happened since, and the "dotnet new" command no longer works like that.