Using AspNet5 OptionsModel
If you’ve used AspNet5 then you’ve probably been using some MVC in which case you’ve probably seen something like this in your Startup class:// Add MVC services to the services containerservices.AddMv…
If you’ve used AspNet5 then you’ve probably been using some MVC in which case you’ve probably seen something like this in your Startup class:// Add MVC services to the services containerservices.AddMv…
Say for example you have a CMS :) You want to give full control to the developer to manage how their front-end members with authenticate, which could of course include ASP.Net Identity OAuth login pro…
During some spare time last weekend I decided to look into booting up Umbraco outside of a web context. I know this has been done before in various different ways but for this I wanted to just try to…
I’ve been working on a side project called Smidge which is a runtime JS & CSS preprocessor for ASP.Net 5. I started this late last year after the 2014 MS MVP Summit as a good starting point to deep…
There’s a chance you might not have heard of FCN (File Change Notification) in ASP.Net and there’s an even bigger chance you didn’t realize how much it might affect you. What is FCN in ASP.Net? As…
Since I like using Powershell for my build scripts for various projects I thought it would be handy to create a 100% Powershell powered script to create an Umbraco package in Umbraco’s native package…
Attribute routing in ASP.Net WebApi is great and makes routing your controllers quite a bit more elegant than writing routes manually. However one problem I have with it is that it is either “on” or “off” at…
To me this seems to be a very straight forward request but I cannot find the ‘easy’ way to do this in .Net even though there seems to be a clear indication that this is supported Out of The Box.…
I’ve been working on a project called “Smidge” which is a runtime Js/Css pre-processor for ASP.Net Core and have been meaning to blog about how I integrated this with AppVeyor – to run my tests, build…
Building a plugin system in Asp.Net Core is a dream compared to previous Asp.Net versions. In previous versions it was not really feasible to have DLLs located outside of the /bin folder for a web…