I have an Asp.Net Web API set to target .NET 4.6.1 which is published to an Azure App Service.
I received a notification from Microsoft about the imminent move to .NET 4.8 for Azure App Service.
The notification recommends I test my applications locally.
I can see that v4.6.1 is an installed version of .NET framework for my Azure App Service:
Two questions:
- Given v4.6.1 exists will my Web API continue to use v4.6.1 regardless of the later versions of .NET framework that are present?
- What (if any) testing is needed prior to the v4.8 App Service Update? Is it just a case of building it locally using v4.8 to confirm it builds/runs, or is a thorough batch of regression testing warranted?