Microsoft Visual Studio Community 2019:致命错误C1083:无法打开包含文件:'corecrt.h':没有这样的文件或目录

时间:2019-11-20 03:43:37

标签: c++ visual-studio

仅完成了Microsoft Visual Studio Community 2019的全新安装,没有可选功能, enter image description here 尝试使用c ++控制台应用程序项目类型运行简单代码:

#include <iostream>

using namespace std;

int main()
{
    cout << "testing vs 2019" << endl;
    return 0;
}

得到以下错误:

1> ------重建全部已开始:项目:Project1,配置:调试x64 ------ 1> C:\ Program Files(x86)\ Microsoft Visual Studio \ 2019 \ Community \ MSBuild \ Microsoft \ VC \ v160 \ Microsoft.CppBuild.targets(434,5):警告MSB8003:WindowsSDKDir属性未定义。可能找不到某些构建工具。

1> Source.cpp 1> C:\ Program Files(x86)\ Microsoft Visual Studio \ 2019 \ Community \ VC \ Tools \ MSVC \ 14.23.28105 \ include \ crtdefs.h(10,10):致命错误C1083:无法打开包含文件:' corecrt.h':没有这样的文件或目录 1>完成的建筑项目“ Project1.vcxproj”-失败。 ===========全部重建:0成功,1失败,0跳过==========

2 个答案:

答案 0 :(得分:2)

我建议您应该在VS2019安装程序中下载并安装Windows 10 SDK。

enter image description here

所选版本必须与项目中设置的版本相同。

enter image description here

答案 1 :(得分:0)

安装通用CRT SDK-在此处Universal-crt

中引用文章