Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a C# console app in Visual Studio 2010 that I can run just fine. When I attempt to run the process in debug mode, I am presented with the following error:

clr.dll version doesn't match mscordacwks.dll

I have tried searching for any information, but I haven't been able to find anything. Can anyone provide clues as to why I can't run this with the debugger?

EDIT: I should clarify that I have been able to successfully debug a console app previously, this is a new situation.

share|improve this question
Did anything change when this started happening? Does it happen for all projects and framework versions? – SLaks Apr 24 '11 at 2:02
@SLaks Not that I'm aware of. Yes. – Rebecca Chernoff Apr 24 '11 at 2:05

5 Answers

up vote 83 down vote accepted

From what I can tell when I'm able to reproduce this error, it is caused by being in the middle of installing Windows updates. So, running updates, then postponing a reboot, then attempting to debug code is what was putting me in this broken state.

share|improve this answer
1  
+1 - I had the same error, but when trying to attach to a process. My computer had failed installing some updates, and was pending a reboot. After rebooting and retrying the updates, I can attach again. – Paul Jul 11 '11 at 18:21
2  
My computer is in the process of running updates, which could be related. Though in my case simply closing and reopening VS 2010 fixed the problem. – TTT Aug 18 '11 at 18:09
On VS 2012 SP 1, after a .net framework update, I had this error. Restarting only IIS Express for application (the one from VS) also solved the issue without having to reboot the computer. – Sebastien F. Feb 8 at 12:20

I had this issue once and it was caused by an pending Windows Update on the Server where the process was running, which I wanted to attach.

share|improve this answer

I have finally solved this!

It seemed to have happened after I updated my Windows 7. One of my files must have been out of date.

The fix: Install VS 2010 Service Pack 1

Worked correctly right after I installed. Hitting breakpoints and everything!

Hope this works for you too!

share|improve this answer

I also updated Service pack1, and made sure windows updates are upto date..but still was having the same issue

"The Version of CLR.dll in the target does not match the one mscordacwks.dll was built for."

Some Microsoft A' soles closed this issue in connect.microsoft.com article as not reproducible...Unforgivable, irresponsible Support system!!

But in social.msdn.com directed the link for updates through this link

  • This has resolved the problem in my machine ( Win7,VS2010,target 4.0)

Hope it helps,

share|improve this answer

I had VS 2010 SP1 for ages and had rebooted many times. There wasn't any windows update in progress either. I closed all my VS 2010 IDEs and then opened them, and the problem was gone.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.