4
Searching for the same problem, I was able to correct after a few attempts.
First a few explanations:
The bin folder receives the DLLs of your project after the Solution.
If you give a Clean in the project, those DLLs will be removed until a Build be performed again.
Try this to fix:
Right click on Solution in Solution Explorer -> Properties -> Configuration Properties and check the checkbox Build is checked for each of the layers.
In case you’re checking and you’re still not generating DLLs, follow the steps of Solution 1 and if it doesn’t work try to Solution 2:
Solution 1
- Of a
Cleanin hisSolution - Right click on your layer applying and, in
frammework, check which version is set (in my case 4.5.1). - Go to the same option as the item 2 in all other layers and set all
frameworksfor the same version. - Save your project and a
Build
Solution 2
- Of a
Cleanin hisSolution - Restart the
Visual Studio - Clear the
Buildsas explained above and click on apply - Check them again, click Apply and Ok
- Of a
Buildin hisSolutionand check whether theDLLswere generated
Check that question in Soen with other possible solutions.

I edited the answer. Try following solution 1 steps now.
– George Wurthmann