Problem with c++ project "the project could not be compiled"

hi, i’m new with unreal engine and i’m trying to run a c++ project. And when i try, a error is showing up. I’ve searched and seen that some people already had compiling problem but i didn’t see my error. I’m able to use the blueprint project, but if i add a c++ class, the project become unusable.

Output Log

I’m on windows 8.1 with direct X. I use visual studio 2015 community
I’ve tried to uninstall and reinstall both unreal and visual studio.
If you have any idea .
Thanks in advance.

Hello Zetfire,

This seems like an issue with your Visual Studio installation as it is referring to multiple Visual Studio libraries. Could you navigate to your Control Panel > Programs and Features > Microsoft Visual Studio 2015 and select “Change”? Once there, you should be prompted with a few choices, please choose “Modify” and ensure that you have everything under Programming Languages > Visual C++ and Common Tools installed. Since you’re on 8.1, be sure to install anything related to 8.1 as well as there are a couple unique modules included.

If that doesn’t work, try compiling a C++ project outside of UE4, just like a simple “hello world” program or something that uses a few variables like “int” or “double” to see if Visual Studio itself is having issues.

I have checked, i have all the tools for the c++. But effectively, the problem doesn’t come from unreal because i can’t compile a hello world. If i put a simple #include, i get a lot of error from visual studio.
#include
int main() //C++ programs start by executing the function main
{
return 0;
}
Just with this code(does nothing), i get 384 errors on multiple library. I will not put the error log here because i’ve already done this in stackoverflow:http:///questions/34501733/cant-compile-simple-hello-world-c
But if you have any idea (apparently it’s not an unreal problem but we never know)