Debugging assembly load issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T07:37:09Zhttp://stackoverflow.com/feeds/question/724699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/724699/debugging-assembly-load-issue2Debugging assembly load issuetoxvaerd2009-04-07T08:52:57Z2009-06-04T00:47:53Z
<p>Hi, I have a very wierd problem happening to me during unit testing (MSTest in Visual Studio - .NET 3.5 SP1):</p>
<ol>
<li>I click "Run All Tests in solution"</li>
<li>All tests passes, <em>except</em> for one particular class, where every tests throws the following exception: "System.IO.FileLoadException: Loading this assembly would produce a different grant set from other instances. (Exception from HRESULT: 0x80131401)."</li>
<li>I then go and set a breakpoint in the class. Result: all tests in the class passes (the same tests that failed before).</li>
<li>I click "Run All Tests in solution". All tests passes, except for <em>another</em> class.</li>
<li>I go set a breakpoint in the class. Result: All tests in the class passes</li>
<li>I click "Run All Tests in solution". All tests passes, except for the first testclass again.</li>
<li>etc.</li>
</ol>
<p>As you can see the problem is very inconsistent, making it hard to debug.</p>
<p>I've tried using Fusion Log Viewer, but that gave me confusing results I didn't quite understand.</p>
<p>What should I be looking for? Has anyone else experienced this problem?</p>
<p><strong>Update:</strong>
Some additional info was requested.</p>
<p>The tests has run fine for months - I think last time I ran them was thursday, and then they ran fine. I've been trying to examine the source control history, to see if something has changed, but nothing out of the ordinary. </p>
<p>I could track back and check out the project at different days back in time, but we're using Visual Source Safe (I know - not my descission :-( ) so I'm hesitating to do that.</p>
<p>The tests are regular unit tests, and I'm using Moq for mock-objects... But as I said - it has worked fine until recently.</p>
<p>I was just hoping for some advice on how to debug this issue.</p>
http://stackoverflow.com/questions/724699/debugging-assembly-load-issue/724768#7247681Answer by Mark Dickinson for Debugging assembly load issueMark Dickinson2009-04-07T09:15:51Z2009-04-07T09:15:51Z<p>Apparently it is a bug. No doubt you've already found this but just in case, here's a link.</p>
<p><a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=95157" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=95157</a></p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/724699/debugging-assembly-load-issue/848058#8480580Answer by toxvaerd for Debugging assembly load issuetoxvaerd2009-05-11T13:17:21Z2009-05-11T13:17:21Z<p>The problem described here is only occuring on my machine. I tried purging my VS2008 settings, disabling all Add-Ins and checking the project out on a different location, but neither worked. Right now I think the last possible solution before a reformat of the machine is reinstalling VS2008, which I don't have time for at the moment, so I will just have to live with the issue for now.</p>
http://stackoverflow.com/questions/724699/debugging-assembly-load-issue/948046#9480461Answer by Scott A. Lawrence for Debugging assembly load issueScott A. Lawrence2009-06-04T00:47:53Z2009-06-04T00:47:53Z<p>We encountered this issue as well, though it only happened on our build server (where we have VS2008 installed in order to use MSTest with MSBuild), not locally. We installed <a href="http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=16827" rel="nofollow">this hotfix</a> in the version of VS2008 on the build server and that eliminated this problem. </p>