Securing UseStaticFiles
I have an aspnetcore web site that only serve static content but I want to restrict access to the HTML pages.
How should I do?
Read moreI have an aspnetcore web site that only serve static content but I want to restrict access to the HTML pages.
How should I do?
Read moreLet's talk about rolling file providers implementations...
Read moreThere are a lot of extension methods on the IServiceCollection, whether they are operationals or configurationals, and yet, some that would make our use of the dependency injection easier, are missing.
Read moreIn his latest video, Nick Chapsas is reviewing various C# advises. The one we will be talking is about Keep it simple stupid, and starts but comparing two implementation of the same function.
Read moreref struct
have been introduced with C# 7.2 to give us some optimizations opportunities. So let's try to implement a ref struct Stack and see how it goes.