Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If you have all your projects inside the same solution, you need to make sure that they're all project references and not file references. You can check this by right clicking the project and going to properties => references. </p> <p>In your reference list you'll see a column named "copy local". If this is set to set to false it means you're referencing it by file instead of project (which doesn't update the DLL after you build it). To solve it, remove the reference and add it again (making sure you reference it from your solution, not by referencing the DLL on your hard-drive).</p> <p>If you don't have all projects inside the same solution, then this is normal behavior. Suppose your Ajax controls library is outside of the solution.</p> <p>The starting situation would be something like this:</p> <ul> <li>Ajax references A (version 1)</li> <li>Project references A (version 1)</li> <li>Project references Ajax (version 1)</li> </ul> <p>After you build your solution (without the Ajax project inside it) you will have the following situation:</p> <ul> <li>Ajax references A (version 1)</li> <li>Project references A (version 2)</li> <li>Project references Ajax (version 1)</li> </ul> <p>As you can see, the compiler suddenly needs a reference to A version 1 and version 2, so that's impossible and it gives you an error. This would also explain why it works when you do a rebuild and delete the DLL and add it again.</p> <p>The solution here would be to add the Ajax-project to your solution and rebuild it every time.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload