I'm unable to debug a WinForms C# application using the released version of Visual Studio 2010 Prof.

I get the following error message after the second debugging run.

Error 9 Unable to copy file "obj\x86\Debug\Arrowgrass Reports.exe" to "bin\Debug\Arrowgrass Reports.exe". The process cannot access the file 'bin\Debug\Arrowgrass Reports.exe' because it is being used by another process.

I've tried a pre-build script to attempt to delete this file, but it's locked by Visual Studio.

There are a few references to this on the net so it is a know problem. Does anyone have a hotfix or effective work-around?

link|improve this question
Posted an answer below to resurrect this question.. let me know if it works for you! – Tom Studee Aug 4 '11 at 21:34
feedback

9 Answers

up vote 12 down vote accepted

I have found this issue very easy to reproduce, and the fix for me is a variation on Richard Fors' answer. If I have a UserControl open in the designer, run the debugger, and then edit the UserControl, the subsequent rebuild will fail. If I close the UserControl before running the debugger I never get this error, so I just make sure to close the designer window before hitting F5.

link|improve this answer
feedback

You can try to kill the vshost.exe process:

taskkill /F /IM "Arrowgrass Reports.vshosts.exe"

If this doesn't help you might want to follow the tips given here:

File Lock Issue in Visual Studio When Building a Project

link|improve this answer
The link doesn't try to decipher the cause of the problem and thus it works or not. Not it is in my case. – Tomas Pajonk Apr 23 '10 at 5:43
@Tomas Pajonk: The cause of the problem is most likely the fact stated by the error message; your target is being used by another process. To find out, which process, you can use Process Explorer from Sysinternal; press Ctrl+F and search for "Arrowgrass Reports.exe" – 0xA3 Apr 23 '10 at 22:49
Just in case anyone is still interested in this, I've noticed that the problem only occurs when user defined controls are used. It looks like Visual Studio itself is the other process, as it is rendering the control. I found that as long as this control was not on the screen, I didn't get the error. – Richard Forss Jun 28 '10 at 8:37
feedback

Disabling windows search did not fix for me. However disabling Antivirus did (our Antivirus is Symantec Endpoint Protection 11)

As such, I was able to fix this for myself by changing the Debug settings in the project to point the working folder to a path on the C: drive, and then excepting that path from the antivirus auto-protect scan settings.

I hope this helps someone.

link|improve this answer
feedback

Looks like this issue has (finally!) been fixed in the VS2010 SP1

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=75568aa6-8107-475d-948a-ef22627e57a5&displaylang=en

link|improve this answer
3  
I got it today with VS 10.0.40219.1 SP1Rel :( – CmdrTallen Mar 22 '11 at 3:28
1  
Same as CmdrTallen - SP1 does not comprehensively fix the issue. Perhaps it fixes some root causes of it? But not for me. – ZeroBugBounce Oct 8 '11 at 22:44
I am also still running into this issue routinely when designing a user control and I am on VS 2010 SP1. I don't even have to run the application in the debugger. One build, followed by a second consecutive build reproduces the issue, when I have a user control open in the designer. – Elan Nov 13 '11 at 22:07
feedback

I posted this answer in a similar question but figured I'd also say it here:

Alright... this might sound pretty crazy.

I've had this problem in VS2010 for the last couple of years. The workaround mentioned here works for me, but a lot of times I forgot to close all my forms/usercontrols first.

I've discovered that merely going to view the open files via:

Computer Management (compmgmt.msc)->Shared Folders->Open Files

will "Free up" whichever file is being locked. Very strange, but it works for me!

link|improve this answer
feedback

The condition described can also be caused by the offending DLL or EXE referencing itself; in which case the Process Explorer test described previously never returns a match (e.g. it's not running). This unexpected situation seems to be caused during some sequence of operations in VS2010 (and likely all previous versions) which insidiously adds the reference behind the scenes. The specific cause of this hasn't been tracked down (or resolved that I know of). To check for, and resolve this error simply make sure the offending DLL or EXE is not listed as a reference to itself.

link|improve this answer
1  
Do you mean in the references of the project? Where do you see this information? – Tom Studee Sep 8 '11 at 22:19
feedback

Please try uninstalling Windows Live SYNC. Does it still happen?

link|improve this answer
feedback

I think I just found the culprit and the solution.

Go to services and stop & disable the "windows search" service.

That solved the problem for me now.

link|improve this answer
feedback

Got the error ("The process cannot access the file … because it is being used by another process") when I modified the (Visual Studio 2010 C# Express with SP1) solution from two large (10 source files, ~500 lines per file) projects with one referencing the other, to lots (6) of smaller projects with lots of projects referencing other projects.

The references were to the dll- and exe files (the Debug versions of them), NOT to the projects even though the projects were in the same solution.

I then learned that references should be to projects, not files, for F12 to work properly. So I modified the references. That made F12 work (jump to the source file instead of some auto-generated interface description), and at the same time the "cannot access file" error during build disappeared.

I only got the "cannot access file" error when doing Release builds. The references were to the Debug versions of exe/dll's. I suspect that this mixing is what triggers the bug in VS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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