Microsoft 365 features that help users manage their subscriptions, account settings, and billing information.
Hi Adrian,
We were able to solve this issue.
Our conclusion was that choosing the framework in App Service was not enough for it to actually use 4.8.
I'm not sure if both of these changes are required, or just the second one, it only started working after step 2:
- Rebuild the solution with target framework >= 4.6.2
Previously the project was configured to build for 4.5.1. In our case most of our remaining components are compiled on 4.7.2, so used that for consistency.
- Updated the web.config file to reflect the framework change.
<compilation targetFramework="4.7.2"/>
<httpRuntime targetFramework="4.7.2"/>
Let me know if works for you,
Rui