Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Darren Wilson 238 posts 646 karma points
    Aug 15, 2016 @ 15:49
    Darren Wilson
    0

    Issue Upgrading

    I'm trying to upgrade an existing site from 7.3.1 to 7.4.3. I downloaded the ZIP, copied over /umbraco, /umbraco_client and /bin. First I got an DB error that I found a solution on here to fix (https://our.umbraco.org/forum/using/migrating-from-v5-to-v4-and-beyond/75050-database-upgrade-fail-on-712-to-74-manual-upgrade). Next I got a compiling error:

    CS0012: The type 'System.Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.

    Any ideas how I might be able to fix this? Luckily enough I backed up first ;-)

    Thanks Darren

  • Yakov Lebski 594 posts 2350 karma points
    Aug 16, 2016 @ 21:28
    Yakov Lebski
    0

    Add missing assembly (System.Runtime) in web.config

    <compilation debug="true" targetFramework="4.5">
      <assemblies>     
        <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />   
      </assemblies>
    </compilation>
    
  • Darren Wilson 238 posts 646 karma points
    Aug 17, 2016 @ 09:01
    Darren Wilson
    100

    Thanks Yakov!

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies