I'm trying to setup an app on an Azure instance that another developer created.
I'm trying to user a service that looks like it requires .NET 4.5 and is not compatible with 4.6... for some reason.
The instance he setup is on Windows Server 2016, which has .NET 4.6 installed by default.
The last server I setup was 2012.
Has anyone setup .NET 4.5 on Windows Server 2016?
This is a cut and paste answer but this MS article indicates that you can run any .NET 4.x application with higher versions of the 4.x framework.
NET Framework 4.x versions are in-place updates to earlier versions. That means the following:
You can only have one version of the .NET Framework 4.x installed on your machine.
You cannot install an earlier version of the .NET Framework on your machine if a later version is already installed.
One thing to consider: although .NET 4.6 is installed by default, ASP.NET 4.6 is not, and you may need to add that under Features.
To modify the version of .NET, go to Control Panel -> Programs and Features -> Turn Windows features on or off. This will open the Add Roles and Features Wizard as part of Server Manager. You can modify the .NET version during the Features step of the Wizard.