Customizing ASP.NET Core Part 11: WebHostBuilder
In my post about Configuring HTTPS in ASP.NET Core 2.1, a reader asked how to configure the HTTPS settings using user secrets."How would I go about using user secrets to pass the password to...
View ArticleWPF and WinForms will run on .NET Core 3
Maybe you already heard or read about the fact that Microsoft brings WinForms and WPF to .NET Core 3.0. Maybe you already saw the presentations on the Connect conference, or any other conference or...
View ArticleThoughts about repositories and ORMs or why we love rocket science!
The last architectural brain dump I did in my blog was more than three years ago. At that time it was my German blog, which was shut down unfortunately. Anyway, this is another brain dump. This time I...
View ArticleProblems using a custom Authentication Cookie in classic ASP.NET
A customer of mine created an own authentication service that combines various login mechanisms in their on-premise application environment. On this central service combines authentication via Active...
View ArticleGit Flow - About, installing and using
The people who know me, also know that I'm a huge fan of consoles and CLIs. I run the dotnet CLI as well as the Angular CLI and the create-react CLI. Yeoman is also a tool I like. I own a Mac, but...
View Article#MVPSummit2019 - Impressions...
Also this year I was invited to attend the yearly Global MVP Summit in Redmond and Bellevue. It started last week Sunday until Thursday. As last year I add two days before and after the summit to get...
View ArticleImplement Middlewares using Endpoint Routing in ASP.NET Core 3.0
If you have a Middleware that needs to work on a specific path, you should implement it by mapping it to a route in ASP.NET Core 3.0, instead of just checking the path names. This post doesn't handle...
View ArticleSharpcms.Core - Migrating an old ASP.NET CMS to ASP.NET Core on Twitch
On my Twitch stream I planned to show how to migrate a legacy ASP.NET application to ASP.NET Core, to start a completely new ASP.NET Core project and to show some news about the .NET Developer...
View ArticleCustomizing ASP.NET Core Part 12: Hosting
In this 12th part of this series, I'm going to write about how to customize hosting in ASP.NET Core. We will look into the hosting options, different kind of hosting and a quick look into hosting on...
View ArticleSelf-publishing a book
While writing on the Customizing ASP.NET Core series, a reader asked me to bundle all the posts into a book. I was thinking about it for a while. Also because I tried to write a book in the past...
View ArticleMVP for four times in a row
Another year later, again it was the July 1st and I got the email from the Global MVP Administrator I'm waiting for :-)Yes, this is kind of a yearly series of posts. But I'm really excited that I got...
View ArticleNew in ASP.NET Core 3.0 - Generic Hosting Environment
In ASP.NET Core 3.0 the hosting environment changes to get more generic. Hosting is not longer bound to Kestrel and not longer bound to ASP.NET Core. This means you are able to create a host, that...
View ArticleNew in ASP.NET Core 3.0 - Generic Hosting Environment
In ASP.NET Core 3.0 the hosting environment changes to get more generic. Hosting is not longer bound to Kestrel and not longer bound to ASP.NET Core. This means you are able to create a host, that...
View ArticleNew in ASP.NET Core 3.0 - Taking a quick look into the Startup.cs
I the last post, I took a quick look into the Program.cs of ASP.NET Core 3.0 and I quickly explored the Generic Hosting Model. But also the Startup class has something new in it. We will see some small...
View ArticleASP.NET Core 3.0: Endpoint Routing
The last two posts were just a quick look into the Program.cs and the Startup.cs. This time I want to have a little deeper look into the new endpoint routing.Wait!Sometimes I have an Idea about a...
View ArticleNew in ASP.NET Core 3.0 - Blazor Server Side
To have a look into the generic hosting models, we should also have a look into the different application models we have in ASP.NET Core. In this and the next post I'm going to write about Blazor,...
View Article.NET Conf 2019
From September 23 to 25 the .NET Conf 2019, hosted by Microsoft, was running virtually on Twitch. Like last year the third day was full of talks done by the community. As well as last year, I also did...
View ArticleNew in ASP.NET Core 3.0 - Blazor Client Side
In the last post we had a quick look into Blazor Server Side, which doesn't really differ on the hosting level. This is a regular ASP.NET Core application that will run on a web server. Blazor Client...
View ArticleNew in ASP.NET Core 3.0: Worker Services
I mentioned in on of the first posts of this series, that we are now able to create ASP.NET Core applications without a web server and without all the HTTP stuff that is needed to provide content via...
View ArticleASP.NET Core 3.0 Weather Application - The gRPC Server
IntroductionAs mentioned in the last post, the next couple of posts will be a series that describes how to build a kind of a microservice application that reads weather data in, stores them and...
View Article