| |

How to enable dynamic GZIP compression on Azure Web App

Go to the Kudu on Azure First should go to Kudu on Azure. Please visit https://docs.microsoft.com/en-us/azure/app-service/resources-kudu to get more insights. You can just add “scm” to your azure web app URL as follows. Find CMD console Then, you should navigate to the CMD console: Find the application Config folder Click on the “Site root” icon…

| |

Deploying ASP .NET app to FTP with Azure DevOps CI/CD pipeline

What you will learn In this post, I will show how to configure the Azure DevOps pipeline – to easily publish an ASP .NET app to FTP server. How to configure the pipeline (5 easy steps) FtpUpload task is essential, please check the last step. To deploy all your files to the desired FTP location,…

How to use bundling and minification in ASP .NET

What you will learn? ASP .NET framework provides a native and powerful scripts optimization engine that is very easy to use. In this blog post, I will go through how you can handle your website scripts in an efficient way using bundle and minification techniques. After going through this step-by-step guide – you know how to…