Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error handling exceed retry count of 10 [closed]

Error 1:

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

Error 2:

Error 11 Could not copy "obj\Debug\coursework2.exe" to "bin\Debug\coursework2.exe". Exceeded retry count of 10. Failed.

I keep repeating getting these two errors. Please explain to me how to solve this.

like image 865
user1211911 Avatar asked Jan 06 '14 06:01

user1211911


1 Answers

I agree with @ahmet that your executable might be already executing while you are trying to build the solution.

  1. Open up Task Manager (Ctrl + Shift + Esc)
  2. Look for executing processes or applications matching your executable name (CourseWorks.exe)
  3. Close them
  4. Retry
like image 100
Parv Sharma Avatar answered Oct 17 '22 22:10

Parv Sharma