Cannot load application.Designer.vb what to do?

user4951 picture user4951 · Feb 20, 2013 · Viewed 8.4k times · Source

I got this error:

Error   1   Unable to open module file 'D:\business\shared\Dropbox\badgers\vb\vb.net\My Project\Application.Designer.vb': The system cannot find the path specified.    D:\business\shared\Dropbox\badgers\vb\vb.net\My Project\Application.Designer.vb 1   1   traverseweb4

Application.designer.vb is a generated file. I simply deleted that. How do I get that regenerated?

If I open the .vbproj file directly with notepad ++ I saw:

<Compile Include="My Project\Application.Designer.vb">
  <AutoGen>True</AutoGen>
  <DependentUpon>Application.myapp</DependentUpon>
</Compile>

So it clearly is autogenerated, so why vb.net blame me for not having that stupid file?

By the way removing those stupid lines in notepad ++ works. Now things work perfectly. But this pissed me off a lot.

Anyone can explain why it happen in the first place? Why hacking into a .vbproj file is necessary to get this fixed?

Answer

GJKH picture GJKH · Apr 26, 2013

When I've had problems like this in the past I usually clean the project (right click solution - clean) and then rebuild from the same menu - which usually fixes errors like this.