Hi @Donald Symmons ,
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'.
First you need to download System.Runtime.dll
through the nuget package manager(Tools-->NuGet Package Manager), then add: using System.Runtime;
to aspx.cs.
If you still report errors, please add the assembly to web.config
. Other assembly errors can refer to this method.
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
Maybe I need to change the namespace in all the pages at page level in the Inherits attribute and code behind file.
Yes you do, you need to change all your old project names to the new ones (quirverapp), you can use (Ctrl+F) to search for any missing project names.
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.