Unable to copy error in C#
-
Hi I am getting an error like: Error 1 Unable to copy file "obj\Debug\WindowsApplication32.exe" to "bin\Debug\WindowsApplication32.exe". The process cannot access the file 'bin\Debug\WindowsApplication32.exe' because it is being used by another process. WindowsApplication32
-
Hi I am getting an error like: Error 1 Unable to copy file "obj\Debug\WindowsApplication32.exe" to "bin\Debug\WindowsApplication32.exe". The process cannot access the file 'bin\Debug\WindowsApplication32.exe' because it is being used by another process. WindowsApplication32
-
Hi I am getting an error like: Error 1 Unable to copy file "obj\Debug\WindowsApplication32.exe" to "bin\Debug\WindowsApplication32.exe". The process cannot access the file 'bin\Debug\WindowsApplication32.exe' because it is being used by another process. WindowsApplication32
The error kind of speaks for itself. You have a process that's got a handle to WindowsApplication32.exe and that's preventing you from finishing the compile phase. Take a look in task manager and see if there's an instance of this application running and kill it.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Whenever i have seen that error it is because the application i am trying to debug is still running, look in task manager to see if it is still running and end the task if need be
Life goes very fast. Tomorrow, today is already yesterday.