The entirety of .NET Core's history is available online. It is one of Microsoft's first completely open frameworks, in that all of the important decisions have been made in the open and the source is completely open. Some of the key Microsoft employees even host a weekly show about it's development.
I recently wrote about ways to get an answer to questions on Stack Overflow. In this post, I'm going to look at the most common types of questions asked on Stack Overflow regarding .NET Core and ASP.NET Core. I'll also provide answers to these questions, too.
I've taken a look at the most commonly asked questions on Stack Overflow for both .NET Core and ASP.NET Core and thought I'd write up what would be my answers here. Which questions did I ask? You'll have to click through to find out.
.NET Core 2.0 Preview 1 was released at MS Build 2017. Now that it's been out for a week, I'll take a look back at the information in the announcement, and I'll take a look at the benefits and drawbacks to using it.
Building .NET Core applications is great, but what are the options for hosting? In this post, I take you through the steps required to publish your application to a Digital Ocean droplet.
In this post, I'll discuss the process I took to go from the dotnet new command all the way to a single page application which sends GET requests, parses the responses and uses Angular2 to display rich, human readable versions of the parsed data
The dotnet new command has support for project templates, and one of the template packages that Microsoft has released contains a collection of Single Page Applications. In this post, I’ll take us through how to make a new project from the Angular2 template, what changes where made the .NET Core to make some of the more impressive things in this template work, and how it all fits together.In this post, I talk you through how to create an Angular2 Single Page Application from one of these templates and how it all fits together.
.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.
With so many official tooling options available, what's a developer to do? This week we go through some of the different tooling options that Microsoft have provided us for working in .NET Core and not all of them are Windows applications (shocking!)
Sometimes you just want to build a website with strong separation of concerns - that's where the MVC model can help. This week we build an MVC application, go through what an MVC application is (covering separation of concerns, too), where you might use one, and what some of the most important configuration options are and where to find them.