Jason Rowe

Be curious! Choose your own adventure.

Tag: .NET Core

  • KestrelMock .Net Core Mock Server

    https://github.com/JasonRowe/KestrelMock https://www.nuget.org/packages/KestrelMock There are many powerful mocking frameworks available why build another one? Sure frameworks like WireMock and MounteBank have a bunch of fancy features but who really needs all that. Seriously though sometimes all you need is a response based on URL and post data ridiculously fast. Also a Kestrel mock HTTP server can […]

  • ASP.NET Core Problem Details examples

    In versions 2.1 and 2.2, ASP.NET Core added a feature called “Problem Details” which will help you standardize error messages in API controllers. In 2.2, file new project enables “Problem Details” by default for errors thrown from controllers using the “[ApiController]” attribute. Also with the help from a nuget package Hellang.Middleware.ProblemDetails you can add these […]

  • NServicebus and .NET Core – RabbitMQ

    This is a follow up to my first post on NServicebus and .NET Core. In this post I’ll switch my transport from training mode to RabbitMQ. The code for this post can be found on Github. Run RabbitMQ Host First setup an instance of RabbitMQ. The fastest way for me was to use Docker. Linux […]

  • Getting started with Vue.js and NET Core

    In this post, I’ll go over one option for getting started with Vue.js and .NET Core. I’ll go over how to generate a sample project via JavaScriptServices and point out how it gives you development and build tooling. Microsoft ASPNET/JavaScriptServices JavaScriptServices is a great option if you’re more familiar with .NET then node.js. I’ve used […]