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

Disable Azure function for v1 and v2


Disabling an Azure function has a bug in v1, which is fixed in v2. Below I have made an attempt to explain with both version how it works.

Azure function v2

Enable or disable Azure function bug is fixed in Azure Function v2. Now things are driven through portal using the below setting




Azure function v1

Recently we had an issue in Production application, due to business reason we had to stop one of the Azure functions.

We used Azure function app service running on App service plan and function is Time triggered.

We tried with option available in Azure portal under functions where it lists all the functions available in the App service plan with status as shown below. For the Azure function we wanted to stop, we chose Disable option.


However, immediately we noticed that the function was still running, and the function monitor showed those further executions.

Solution:

Below are the 3 options

Approach 1:
Requires code change where we need to add “Disable” attribute and requires code to be redeployed.
Approach 2: 
Preferred option while developing Azure function needs to be considered.
This method lets you enable and disable the function by changing the app setting, without recompiling or redeploying. Changing an app setting causes the function app to restart, so the disabled state change is recognized immediately.



Approach 3:
If approach 2 is not considered during implementation at the same time don’t want to do a deployment to Production a work around option will be to rename the dll name from the Azure portal. No release required with this option.




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