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
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 do this I would like to share the best and easiest way I have come to so far. NOTE:…
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…