I have an application developed in ASP.NET MVC 5 in framework 4.5. I saw a comment around here that iis 6 does not support framework 4.5, only 4.0, does it proceed? If yes, how do I do the application conversion from 4.5 to 4.0?
I have an application developed in ASP.NET MVC 5 in framework 4.5. I saw a comment around here that iis 6 does not support framework 4.5, only 4.0, does it proceed? If yes, how do I do the application conversion from 4.5 to 4.0?
Yes, .NET 4.5 can not be installed on windows server 2003.
But as you mentioned there, you can change the version of your project.
If you use visual studio, do the following:
Open the solution explorer ( ctrl
+ alt
+ L
)
then right-click on the project name and go to properties
After you open the project properties, go to the Application
tab and change the Target Framework
to .NET Framework 4
. Save your changes and a rebuild in the solution.