Creating a Microservice in ASP.NET 5 RC1
In this blog post, I am going to walk through my experience using ASP.NET 5 (on my Mac!) to create a very simple microservice. I thought I would embrace the new separated, component nature of .NET 5...
View ArticlePushing an ASP.NET 5 Microservice to Cloud Foundry
In my previous blog post, I walked through the process of creating a lightweight microservice in ASP.NET 5 that builds in a cross-platform fashion, so it can run on Windows, Linux, and OS X. I’m going...
View ArticleDependency Injection and Services in ASP.NET 5
In this blog post, I talked about how to build a microservice using ASP.NET 5. While it was a trivial, contrived sample, it did show how easy it is to get started with ASP.NET 5 (did I mention this was...
View ArticleConfiguration Options and DI with ASP.NET 5
In ASP.NET 5, we now have access to a robust, unified configuration model that finally gives us the configuration flexibility that we’ve spent the past several years hoping and begging for. Gone are...
View ArticleMigrating to ASP.NET Core in the Cloud: What you will and won’t miss from...
The folks over at InfoQ have graciously provided a nice list of technology that has been discontinued in .NET Core. You can find their original list here. They present the list without much opinion or...
View ArticleDebugging Node.js Applications in Cloud Foundry
I just added a post over on Medium describing some steps we took to do remote debugging of a Node.js application running in Cloud Foundry. Check out the post here:...
View ArticleDeploying ASP.NET 5 (Core) Apps to Windows in Cloud Foundry
Today I found myself sequestered in a room with a pile of super smart people. This is my favorite kind of day. We have already experimented with pushing an ASP.NET Core application to Cloud Foundry on...
View ArticleUsing Cloud Foundry Bound Services with SteelToe on ASP.NET Core
Before I begin, if you’re not familiar with the concept of backing services or bound services in Cloud Foundry (any of the implementations, including PCF Dev, support service bindings in some form),...
View ArticleMigrating an ASP.NET Core RC1 Microservice to RC2
In a recent blog post, I talked about how to deploy an ASP.NET Core RC1 service to the cloud. With yesterday’s release of ASP.NET Core RC2, I had to make a number of minor changes to my code in order...
View ArticleAdding a Configurable Global Route Prefix in ASP.NET Core
This morning I was asked if it was possible to set up a configurable global route prefix in ASP.NET Core applications. I’ve done this in the past using the old (now legacy) Web API as well as with...
View Article