.NET CLI Overview
In my post on migration from ASP.NET Core RC1 to RC2 I mentioned that there was a move from dnx to the .NET CLI. This post will be an overview this new platform and some of its capabilities....
View Article.Net CLI Custom Tool
Last week’s post was an overview of the .NET CLI. This week I am going to cover creating a new custom tool for the CLI. This post is going to assume you already has the .NET CLI installed. If not check...
View ArticleMigration from ASP.NET Core RC2 to RTM
On June 27th .NET Core 1.0 RTM was released which include ASP.NET Core 1.0 and Entity Framework Core 1.0. The links are to the official Microsoft announcement blogs. Installation Install instructions...
View ArticleASP.NET Core Basics: MVC Controller with Entity Framework Core
Last week’s post covered the installation and creation of a new project in ASP.NET Core. This week I will be expanding that existing project to create a basic contact list which will use Entity...
View ArticleASP.NET Core Basics: API Controller
This week’s post is going to cover the creation of an API controller. The starting point for this post is based on this post from last week and the starting state of the code can be found here....
View ArticleUnable to start process dotnet.exe
This morning I did a sync of a repo using of Visual Studio and then tried to run a web application I was going start working when I got this error: Unable to start process C:\Program...
View ArticleAdd Aurelia to an ASP.NET Core Project
In this post I am going to add a new project to the my existing ASP.NET Core Basics solution which can be found in this repository. The new project will be MVC 6 to which I will add in Aurelia. With...
View ArticleCreate a .NET Standard Library for use with Full .NET Framework
Recently I needed to create a library that would be shared between an UWP application and a Winforms application. My first thought was to create a portable class library with a profile that covered...
View ArticleAurelia with an ASP.NET Core API
In last week’s post I covered creating a new ASP.NET Core project and then adding in Aurelia. The Aurelia application did nothing except output hello world. This week I am going to take an existing...
View ArticleMigration from ASP.NET Core 1.0.x to 1.1
On November 16th .NET Core 1.1 was released including ASP.NET Core 1.1 and Entity Framework 1.1. Each of the links contain the details of what was including in the 1.1 release. Unlike some of the...
View ArticleAngular 2 with an ASP.NET Core API
This week’s post is going to take the Angular 2 application from a couple of weeks ago and add the same functionality currently present in the Aurelia application found the ASP.NET Core Basic repo....
View ArticleIdentity Server: Migration to version 2.1 and Angular HTTP Changes
Version 2.1 of Identity Server 4 was released a few weeks and this post is going to cover updating my sample project to the latest version. The starting point of the code can be found here. We are...
View ArticleTrying the New ASP.NET Core Angular Template with CLI Support
I got hit by the flu that has been going around and now that the fever has passed I thought it would be a good time to try out the new version of the Angular template for ASP.NET Core that works well...
View ArticleEntity Framework Core with Postgres
With last week’s post, I now have Postgres running in a Docker container. This post is going to cover using Entity Framework Core with Postgres which will happen to be running in the Docker container...
View ArticleRefit Basics
A few weeks ago I was watching this episode of the ASP.NET Community Standup and they had Ryan Nowak on to talk about the new HttpClientFactory coming in the 2.1 release and a question came up about...
View ArticleCreate a Desktop Application using ASP.NET Core and Electron.NET
Electron is a cross-platform (Windows, Linux, and Mac) library for building desktop applications using JavaScript, HTML, and CSS. Even if you have never head of Electron I’m sure you have used some of...
View ArticleRun Multiple Projects in Visual Studio Code
While expanding the sample used in the Electron.NET post to include an API I hit a snag with Visual Studio Code. I have used multiple projects with Visual Studio Code before, but never two distinct...
View ArticleAdd Entity Framework Core to an Existing ASP.NET Core Project
I had a Web API application that I was using to test something that had no database interaction at all that I needed to add database interaction too. Going through my posts I didn’t find a guide to add...
View ArticleElectron.NET with a Web API
This post will be expanding on the introduction to Electron.NET that I did here to add in a Web API hit to pull some data as well as the UI on the Electron side to use this data. The code before any...
View Article.NET CLI Errors Due to VSTS Package Source
At work, we use Visual Studio Team Services for source control, internal NuGet package management, and continuous integration. It has been a great tool that has really helped streamline our processes....
View Article