(Steve Gordon) With the release of .NET Core 3.0, the ASP.NET team introduced a new “Worker Service” project template, which is available as part of the SDK. In this post, I’ll introduce the new template, along with some practical examples of the kinds of services which I develop using it.
Tag: Development
Executing Command-Line Processes From A Working Directory Using ProcessBuilder In Lucee CFML 5.2.9.31
(Ben Nadel) In ColdFusion, we’ve always had the CFExecute tag as a means to execute external command-line processes from within our CFML code.
Previews of .NET 5, Blazor WebAssembly 3.2 Arrive
(David Ramel) Microsoft shipped a slew of previews in advance of next month’s scheduled debut of Blazor WebAssembly 3.2 and the milestone .NET 5 release planned for November.
Creating a Cloud E-mail Service on Azure
The most popular and globally accepted e-mail service on Azure is SendGrid. It’s a Cloud-based e-mail service that provides reliable transactional e-mail delivery, scalability, and real-time analytics. Its flexible APIs make integration easy for developers.
Missing Sharing Tab in Windows Explorer and Sharing with PowerShell
(Rick Strahl) On several of my machines I’ve not been able to share a drive for some time. Oddly on other machines it’s working just fine, but on my main dev box I’ve for the longest time had issues sharing a drive.
C# 8.0 Indices and Ranges
(Miguel Bernard) Compared to other languages, C# was way behind in capabilities to handle data efficiently.
Middleware in ASP .NET Core 3.1
(Shahed C) If you’ve been following my blog series (or if you’ve done any work with ASP .NET Core at all), you’ve already worked with the Middleware pipeline.
Rediscovering My Love Of ColdFusion And CFML In 2020
(Ben Nadel) I’ve never been shy about how much I enjoy ColdFusion. So many wonderful things in my life have sprung from the fact that I happened to get an internship under Glen Lipka 20-years ago; and, that his company happened to be using ColdFusion 4.5.
Open Source Uno Platform Supports VS Code After Editor Gets WebAssembly Debugging
(David Ramel) Uno Platform is previewing support for the Visual Studio Code editor after a recent Blazor WebAssembly 3.2 preview added debugging to the problematic project.
Async ValueTask Pooling in .NET 5
(Stephen) The async/await feature in C# has revolutionized how developers targeting .NET write asynchronous code. Sprinkle some async and await around, change some return types to be tasks, and badda bing badda boom, you’ve got an asynchronous implementation. In theory.