I am Using VS Community 2015 to create C++ Console applications
I am trying to stop using pre-compiled headers.
I have deleted #include "stdafx.h" , and the stdafx .h and cpp files.
In the project properties pages I selected
Not Using Precompiled Headers
I tried clean, rebuild, nothing works.
VS keeps looking for the precompiled headers:
1>ConsoleApplication2.cpp(7): fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source?
Anyone have a solution?