(Anthony Giretti) Azure Key Vault is a service provided by Microsoft to securely manage the secrets, keys, and certificates of an application so that they are neither in the configuration values nor in the source code controller.
Tag: Development
Making Views Serve Two Roles in ASP.NET Core
(Peter Vogel) I hate creating two or more Views that share a lot of HTML because it doubles my maintenance burden by forcing me to keep the two Views in sync.
Live Reloading Server And Client Side ASP.NET Core Apps
(Rick Strahl) Client side in-browser hot reloading is one of the most compelling features of client side development.
.NET Core Global Tools – (What are Global Tools, How to Create and Use them)
(Damir Arh) The tutorial provides an overview of .NET Core Global tools: how to use them, how to create them and what to expect of them in future versions of .NET Core.
Cool Things I Learned From Reading The CommonMark Spec For Markdown
(Ben Nadel) About a year ago, I finally enabled a limited set of Markdown syntax in my blog comments. This feature improvement is powered by the Flexmark Java library, which converts Markdown into HTML which I then validate with the OWASP AntiSamy project.
Profiling .NET Core Memory Traffic using JetBrains dotMemory
(Steve Gordon) In this post, I will continue my journey into writing high-performance C# and .NET Core code by taking a look at a benchmarking challenge I recently encountered.
Dependency Injection Using the MEF Framework
(Tapas Pal) The Managed Extensibility Framework (MEF) has solved the common problems encountered when developing enterprise applications.
How to Use Regular Expressions in Visual Studio Find
(Peter Vogel) I have to admit that I’ve never really understood regular expressions. But if there was any reason that I was going to learn to use them, it would be when doing searches in Visual Studio.
Using replaceUrl To Persist Search Filters In The URL Without Messing Up The Browser History In Angular 7.2.14
(Ben Nadel) I am a strong believer that when building a web-based application, as much state should be pushed into the URL as possible.
Introducing the Try .NET Global Tool – interactive in-browser documentation and workshop creator
(Scott Hanselman) If you find yourself learning C# and .NET and come upon the “Run your first C# Program” documentation you may have noticed a “Try the code in your browser” button that lets you work through your first app entirely online, with no local installation!