Visual Studio 2015警告System.Runtime未找到(但VS2013很好)

Mic*_*sai 17 visual-studio-2015

在Visual Studio 2015中,我打开了一个使用Visual Studio 2013创建的项目.重建此项目并看到以下警告:

The referenced component 'System.Runtime' could not be found.
Run Code Online (Sandbox Code Playgroud)

查看Solution Explorer中的References项,单击System.Runtime,Property窗口显示为空,如下所示:

在此输入图像描述

在Visual Studio 2013中,它显示:

在此输入图像描述

这个DLL确实存在于foler中:C:\ Program Files(x86)\ Reference Assemblies\Microsoft\Framework.NETFramework\v4.5\Facades

因此,Visual Studio 2013在构建项目时没有发出警告,但Visual Studio 2015确实如此.

这是一个错误还是我想念Visual Studio 2015中的一些东西?

小智 1

包括System.Runtime.InteropServices.RuntimeInformation而不是System.Runtime. 这对我有用。