August 5, 2018
/
Delivering single page apps with ASPNET Core in Azure
Delivering single page apps with ASPNET Core in Azure
This article is an update to a previous article where I described how to serve a single page JavaScript app with ASP.NET Core. The reason for the update is that I’ve changed the way that I approach doing this. I think the new approach is easier and it has the benefit of being more performant,…
December 3, 2017
/
How to setup code analysis/linting for .NET (with Roslyn analysers)
How to setup code analysis/linting for .NET (with Roslyn analysers)
I’m a huge fan of coding standards, but I’m not a big fan of having to enforce them myself. This article is here to show you how to setup automatic code analysis using the new Rosyln anaysers and the ports of the classic StyleCop rule sets. If you want to see a basic .NET application…
May 25, 2017
/
Delivering single page applications with ASPNET Core
Delivering single page applications with ASPNET Core
NOTE: I have create a new article with an updated and improved approach. Please refer to that article here Lately I’ve been building a lot of single page applications (SPAs) with JavaScript and using ASPNET Core MVC as both the file server and the API server. Although I’ve tried many permutations of how exactly to…
April 16, 2017
/
Deploying ASPNET Core Apps with VSTS
Deploying ASPNET Core Apps with VSTS
Although .NET Core has been out for a while the tooling was still in preview when it was released. Now that Visual Studio 2017 has been released the RTM (Release To Market) version of the tooling for building and publishing .NET Core are available. This includes the the .NET Core Command Line Interface (CLI). However…