Ue4 crashd

hi…every time i make build in ue4 at will crash i don t know way but it will give me message crash !

You must completly clean your project - not only clean from Visual Studio, but also you should delete build folders. My .bat file is like this:

rd /s /q .\Intermediate\Build
rd /s /q .\Binaries

That file is located in root of my project - alongside .sln and .uproject files.

Then you must rebuild your solution and voila: now it works.

When you getting crash after some error and you thing you solved it and error still occures, try completely rebuild project. 95% chance of success.