Question about iis 6 with asp.net mvc

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?

    
asked by anonymous 08.07.2015 / 20:07

1 answer

1

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.

    
08.07.2015 / 22:30