如何在VS2010 IDE中添加System.ComponentModel.Composition.dll?

时间:2011-06-10 16:27:54

标签: visual-studio visual-studio-2010 mef

使用命令行,我使用/r:添加VS2010的引用,如下所示。

csc Program.cs /r:System.ComponentModel.Composition.dll /r:SharedLibrary.dll

如何在VS2010 IDE中添加引用?

我尝试右键单击解决方案资源管理器,然后单击“添加引用...”,但找不到System.ComponentModel.Composition

enter image description here

1 个答案:

答案 0 :(得分:8)

Productivity Power Tools的Add Reference Dialog正在过滤3.5框架程序集,因为您的应用程序无疑是针对3.5。

System.ComponentModel.Composition.dll是一个4.0 Framework dll。您可以通过浏览到4.0框架文件夹来添加引用,但这将阻止您的应用程序进行编译。

相反,如果要使用4.0功能,则应将应用程序的目标更改为4.0