MVC2 To MVC3 Conversion-Entry Point Was Not Found

I followed the directions in the MVC3 release notes, but somehow it wasn't mentioned that you will need to change your MVC2 web config section below

From:

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

TO:

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
          <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
          <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

Took me a while to get it but then everything started working.

Comments refreshcmnts
You must be Loged On to make a comment.
Edit Comment

Please wait... loading

Reply To Comment

Please wait... loading