Introduction: What is AOT? With Ahead Of Time(AOT) compilation, publishing your apps as self-contained gives a platform-specific executable. The publish folder contains all the components of the app, including…
Introduction: What is PsExec? PsExec is a lightweight telnet replacement that helps you to connect with the remote machine and execute the process with full interactivity for console applications without…
Introduction: This is a continuation of my last article about Azure AD B2C integration with the ASP.NET Core application. In this article, we are going to see how to use…
Introduction: What is Managed Identity? Azure Active Directory Managed Identities is one of the features in Azure App services to simplify the Secret management for our cloud services. Basically, our…
Introduction: Azure B2C is a business to customer identity management as a service. Basically, using Azure AD B2C service, customer can use their social, and local account identities to get…
Introduction: The Generic Math support is also known as abstracting over static members. As the name indicates, it’s obvious that now you can declare static abstract methods as part…
Introduction: C# 11 outcome with the new enhancement in the string interpolation to support a new lines, which means the text inside the { and } for a string interpolation…
Introduction: In C# 9 and later we got an init keyword which defines an accessor method in a property, an init-only setter assign value to the property during object construction….
Introduction: The pattern matching was introduced with C# 7 from then it’s kept on evolving and now with C# 11 we got a new feature called List pattern matching….
Introduction: I have created a CI/CD pipeline for my react application in Azure DevOps, the step is very simple for Continuous Integration I have added three steps npm install,…