If it does not work follow this:
http://stackoverflow.com/questions/75...
Note :It deletes The specific Project Bin and obj file.
100 % solution for me :D (2 Steps...)
This is the perfect solution that works for me.. As i solve it
(I will give you other link you can try other also
(Please look description for other videos.. ))
Create a note pad in the specific folder where your project lies
Step1:Inside notepad type this code:
start for /d /r . %%d in (bin,obj, ClientBin,Generated_Code) do @if exist "%%d" rd /s /q "%%d"
Step2:
save this with xyz.bat
2. now open it :
and past and hit enter :)
for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"
If this really work let me know :)