Tidy up - Unused Project and Nuget package reference using Visual Studio 2019

If you are a Developer/Architect using Visual Studio as IDE for your development activities, this blog post will be of your interest. During the Ignite 2021 conference, Microsoft released Visual Studio 2019 v16.9 and v16.10 Preview 1. As part of version 16.10 Preview 1, one of the cool features they introduced is to "Remove Unused References..." for any Projects and Nuget packages that are not in use. At the time of writing this blog post, we have Visual Studio Version 16.10.0 (official release) which includes this new feature.  As part of development, we generally get carried away and introduce new Nuget package references to your project and add new references to your Projects. By the end of development, you will not be 100% sure which are not being referenced and unused which means you will leave those unused project references in your application. Now you might be wondering what's the big deal in it since it doesn't harm. The advantage of removing unused project r

Azure Front Door - Boost Your Web Application

If you are developing a new or an existing web application that is internet facing and can be accessed globally or deploying the new or existing web application in multiple regions then it's high time to consider Azure Front Door in your application architecture. 

Azure Front Door Service (AFD) a scalable and secure entry point for the fast delivery of your global applications. Azure Front Door allows you to transform your global (multi-region) applications into robust, high-performance applications, APIs. AFD makes use of Microsoft Global Network which provides better network performance and reliability. Azure Front Door is a global service and is not tied to any specific Azure region. Azure Front Door is a globally distributed multi-tenant service. The infrastructure for Front Door is shared across all its customers.

Reference Architecture with AFD
Reference Architecture with AFD
Image Source: Microsoft

Benefits of using Azure Front Door:

  • Accelerate application performance, AFD significantly increases application network performance by reducing the round trip time that the end-user spends on the network while trying to access the application. Also AFD route users to the most performant application. In short, it supports multi-geo redundancy and closest region routing.
  • TLS termination at the edge (AFD) saves application backend from encryption and decryption.
  • Session affinity to handle sticky sessions
  • Redirect traffic to your application based on the region it's been accessed
  • AFD makes application resilient, by providing automatic failover by monitoring application in terms of latency and availability using health probes
  • AFD supports URL-based routing which is an added advantage for Microservice architecture.
  • AFD provides integration with WAF to define custom rules and to provide security from DDoS attacks.
  • Rewrite URLs capability supported.
  • Multiple site hosting, which means you can have 2 different domains configured on the same front door.
You can find all the Azure Front Door locations here: https://docs.microsoft.com/en-us/azure/cdn/cdn-pop-locations

Now if you are thinking about how Azure Front Door is different compared to Azure Traffic Manager, I highly recommend visiting my another blog post (AFD vs ATM) where I have tried to show the similarities and differences between those 2 Azure services.

Reference

Comments

Popular posts from this blog

Tidy up - Unused Project and Nuget package reference using Visual Studio 2019

Swagger UI for Azure Function v2 & v3 APIs

Authenticate Azure Functions - API Keys