(Jon Hilton) Blazor promises to empower C# developers to build modern web applications quickly, using a language and ecosystem they already know and understand.
Tag: Development
10 Essential Debugging Tools for C# .NET Development
(Michael Shpilt) When it comes to debugging software, tools are extremely important. Get the right tool and you extract the right information. Get the right information and you can find the root cause of the issue. Find the root cause and you’ve solved the bug.
Q&A with Robert Green: Becoming a Better Developer with Visual Studio and Azure DevOps
(Becky Nagel) Developers new to DevOps might not be aware of its benefits like faster time to market, lower failure rates, and faster fixes and recovery times.
Null API Responses and HTTP 204 Results in ASP.NET Core
(Rick Strahl) ASP.NET Core 3.x has a behavior that results in API results that return null from the controller action returning a HTTP 204 – No Content response rather than a null JSON result.
Perform CRUD Operations On MySQL Database Using EF Core And ASP.NET Core
(Bipin Joshi) As an ASP.NET Core web developer you are probably quite comfortable working with Microsoft SQL Server and Entity Framework Core.
Adding A Description To FusionReactor Tracked Transactions In Lucee CFML 5.2.9.40
(Ben Nadel) A few weeks ago, I looked at using the FusionReactor API (FRAPI) to add custom instrumentation in Lucee CFML. In that post, one of the features that I explored was the ability to wrap a portion of your code in a “Tracked Transaction” such that the execution of said code would show up in
Hosting your own NuGet Server and Feed for build artifacts with BaGet
(Scott Hanselman) NuGet is the package management system underlying the .NET programming platform. Just like Ruby Gems or NPM Packages, you can bring in 3rd party packages or make your own.
How to Operate on Strings in C++
(Manoj Debnath) A string, at its core, simply means an array or characters terminated by a binary zero or null character as the final element in the array. The C-style of dealing with strings means every bit of it and therein lies the problem. Programmers need to be extra careful in dealing with cha
What’s Coming Up for Azure DevOps Boards, Repos, Pipelines and More
(David Ramel) While Microsoft’s Azure DevOps team has been busy lately, introducing Scalar to speed up Git operations and other initiatives, much more work is planned for the cloud-based successor to Visual Studio Team Services (VSTS).
Creating Certificates in .NET Core for Vue.js development using HTTPS
(damienbod) This article shows how to create development certificates for a Vue.js application, so that you can develop using HTTPS. The certificates are created using the CertificateManager nuget package.