.net – Configuration Error related to targetFramework in web.config

asp.netasp.net-mvcentity-frameworknettarget-framework

I have made an MVC website in Visual Studio 2015 and it works in my localhost. But when I published my website and put into my host, it doesn't work. It gives me this error notice:

Server Error in '/' Application.

Configuration Error

Parser Error Message: The 'targetFramework' attribute in the
element of the Web.config file is used only to target
version 4.0 and later of the .NET Framework (for example,
''). The 'targetFramework'
attribute currently references a version that is later than the
installed version of the .NET Framework. Specify a valid target
version of the .NET Framework, or install the required version of the
.NET Framework.

Source Error:

An application error occurred on the server. The current custom error
settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could,
however, be viewed by browsers running on the local server machine.

Source File: G:\xxx\xxx.com\httpdocs\web.config Line: 24

Version Information: Microsoft .NET Framework Version:4.0.30319;
ASP.NET Version:4.0.30319.34248

Related parts in my web.config:

  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>

And this part with error:

  <system.web>
    <authentication mode="None" />
    <customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.6" />
    <httpRuntime targetFramework="4.6" />
  </system.web>

Properties of my website:

enter image description here

And NuGet Package Manager:

enter image description here

EntityFramework Reference Properties:

enter image description here

Default Web Site Basic Settings: (To be honest, I am not sure whether I should add a new website(my website) in here.)

enter image description here

My installed .net frameworks:

enter image description here

My publish method:

enter image description here

I have investigated this problem on the Internet and I have found several links related to my problem: Asp.net MCV4 framework issue. In this link, there are two main offers:

  1. changing this compilation tag

  2. updating application pool in IIS

Actually, I have tried to change this tag but it doesn't change. Then I have controlled my application pool but it seems up-to-date.

enter image description here

I have called my host provider and I have explained my problem. They say that this error is not related to their servers.

What should I do? What is the solution for this?

Best Answer

Your website project is targeting v4.6 of the .Net Framework but your hosting provider has not yet installed this version. Your options:

  1. Ask provider to install it - they are unlikely to do this.
  2. Find another provider that does support it.
  3. Change your project to target v4.5.