Integrating Tailwind into an ASP.NET Core Project
This article will discuss about integrating Tailwind CSS into an ASP.NET Core Project. Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override. Use Tailwind CSS...
Improving Angular CI Build Time Using Azure DevOps Cache task
This article will discuss about improving Angular CI build time using Azure DevOps Cache task. If you’re building Angular applications with Azure DevOps, you will be running npm install command every time even if you’re not changed anything in the package.json. It is a time consuming process. Azure Devops offers...
Minimal APIs in ASP.NET Core 6.0 - Part2
This article will discuss about minimal APIs in ASP.NET Core 6.0 - How to implement Authentication and some C# 10 features which will help to minimize the code. Few days back I wrote a post of Minimal APIs in ASP.NET Core 6.0. I received one comment, asking about how to...
Infuse Machine Learning into your ASP.NET Core apps
This article is about infusing machine learning into your ASP.NET Core applications with ML.NET. ML.NET is a free, open source, and cross platform machine learning framework for the .NET developer platform. In this example, I am using ML.NET Model Builder with the help of Visual Studio. Few months back I...
Microsoft released Visual Studio 2022 Preview 1
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. From the Official Blog Post What’s coming Because most of the...
Deploying a Static Web App via Azure DevOps Pipeline
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. Unlike GitHub Action, you need to configure Azure DevOps token manually. So first you...
Minimal APIs in ASP.NET Core 6.0
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...
CSS Isolation in ASP.NET Core 6.0
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...
Getting started with Azure Bicep
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...
How to generate video thumbnail with Azure function
This article will discuss about implementing an azure function which generate a thumbnail image for a video stored in Azure Storage. In one of the project I am working there is a requirement to extract thumbnail for the video uploaded by user to a Azure Storage Account. This is implemented...