Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unable to write output file ... pdb visual studio 2010

From other answers to this same question, it seems that this error is secondary to the real problem which is a missing source file. I am not using any source control. I have looked through my entire project and don't see any files with a warning icon, indicating it's missing. If there IS a file missing, what is it missing from?

How can I find the "missing" file? Isn't there any way of resetting this? My whole project is stuck on this.

like image 481
user1577821 Avatar asked Oct 06 '12 20:10

user1577821


2 Answers

I had this too. Close VS and reopen. Don't compile. The errors list should tell you which file is missing.

like image 183
Chip Avatar answered Nov 04 '22 05:11

Chip


I too had this problem. My project was building in release mode but was not working in debug mode. I checked for all necesary files are included in my solution and I found that there is one file missing Settings.Designer.vb in My Project folder. I included these file in project and it build file in debug mode also.

like image 21
Punit Avatar answered Nov 04 '22 04:11

Punit