-
Simple ASP.NET Auth (Update)
A few months ago I put together a simple starter project for ASP.NET authorisation without any dependencies or configuration setup requirements. The motivation was my frustration with the complexity of the tutorials for something that should really be quite simple. I did leave the token based authorisation only partially complete however - there was no refresh token included which was an oversight on my part. Anyhow, I’ve gone ahead and done this plus a few other changes.
-
DotNet Test With NUnit
I wrote a post a few weeks ago Exploring The DotNet Command about … well anyway one of the commands mentioned was the
test
command which is what this post is about. -
ASP.NET Core SSL from Development to Production
You pretty have to use SSL these days but getting started with ASP.NET Core was a bit of a challenge for me. As usual I had to scour the net for bits of information and then cobble a solution together and this post is basically what I did to get from development to production. The code for this tutorial can be found here.
-
Simple ASP.NET Auth
.NET Core has been with us for a while now and I was someone who did a fair bit of work with it early on. I was keen to use it as MVC on Mono came with its own set of problems but I only shipped my first app to production on .NET Core fairly recently. One of the things holding me back from migrating from MVC5 was user management. I’ve only used the Membership model in the form of a roles based custom provider with a few overridden methods. My interfaces were something like the following.
-
Exploring The DotNet Command
I’ve been using the new
dotnet
command in my workflow for a little while (anyone that’s made the switch to .NET Core will soon realise you can’t stay away from it, probably even if you’re using Visual Studio). It’s quite powerful but I haven’t really explored it beyond the basics so thought I’d have a bash at using it for more than just doing simple build stuff.