Blog

Blog posts on .NET, Azure, and more.

Microsoft released Visual Studio 2022 Preview 1

June 18, 2021 by Anuraj

VisualStudio VisualStudio2022

Microsoft today announced the first preview version of Visual Studio 2022. Here is the Official Blog post on the Preview announcement. You will be able to run Visual Studio 2022 side by side with your other Visual Studio installations.

Deploying a Static Web App via Azure DevOps Pipeline

June 12, 2021 by Anuraj

Azure StaticWebApp DevOps

This article will discuss about deploying Azure Static Web apps from Azure DevOps Pipeline. Azure Static Web Apps is a service that automatically builds and deploys full stack web apps to Azure from a code repository.

Minimal APIs in ASP.NET Core 6.0

June 06, 2021 by Anuraj

AspNetCore

This article will discuss about minimal APIs in ASP.NET Core 6.0. For a developer coming from Python or Node eco system - the dotnet or dotnet core environment will be over whelming. Minimal APIs will help new developers to build their first ASP.NET Core apps with less ceremony. This will also helps developers to build small microservices and HTTP APIs. This feature is released as part of .NET Core 6.0 Preview 4 - which released along with Microsoft Build 2021 few days back. To get started, you need to create an ASP.NET Core empty web app, you can do this with the command dotnet new web. Once you created the project you will get a directory structure like this.

CSS Isolation in ASP.NET Core 6.0

May 23, 2021 by Anuraj

AspNetCore CSS

This article will discuss about CSS Isolation in ASP.NET Core 6.0. CSS isolation simplifies an app’s CSS footprint by preventing dependencies on global styles and helps to avoid styling conflicts among components and libraries. CSS Isolation is enabled by default for ASP.NET Core 6.0 Projects. I am using Microsoft.AspNetCore.App 6.0.0-preview.3.21201.13 runtime in this project.

Getting started with Azure Bicep

May 15, 2021 by Anuraj

Azure ARM

This article will discuss about Azure Bicep and how to use it for provisioning Azure resources. Bicep is a declarative language for describing and deploying Azure resources. Bicep is a Domain Specific Language (DSL) for deploying Azure resources declaratively. It aims to drastically simplify the authoring experience with a cleaner syntax, improved type safety, and better support for modularity and code re-use. Bicep code is transpiled to standard ARM Template JSON files, which effectively treats the ARM Template as an Intermediate Language (IL).

Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub