我向VS2017项目添加了“ mscorlib.dll”引用,以解决此问题。 我在.csproj文件中添加了以下行以引用mscorlib
<ItemGroup>
<Reference Include="mscorlib">
<!-- Replace with whatever your path to mscorlib is -->
<HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
添加该引用后,我开始遇到以下缺少预定义类型的错误,可以有人告诉我是什么原因。 enter image description here