如何在VS2010 IDE中添加System.ComponentModel.Composition.dll?
在命令行中,我使用 /r:
添加 VS2010 的引用,如下所示。
csc Program.cs /r:System.ComponentModel.Composition.dll /r:SharedLibrary.dll
如何在VS2010 IDE中添加引用?
我尝试右键单击“解决方案资源管理器”,然后单击“添加引用...”,但找不到 System.ComponentModel.Composition
。
With command line, I use /r:
to add reference with VS2010 as follows.
csc Program.cs /r:System.ComponentModel.Composition.dll /r:SharedLibrary.dll
How can I add reference in VS2010 IDE?
I tried to right click on the Solution Explorer, then clicked "Add Reference ...", but I can't find the System.ComponentModel.Composition
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加参考对话框Productivity Power Tools 中的 正在过滤 3.5 框架程序集,因为您的应用程序无疑是针对 3.5 的。
System.ComponentModel.Composition.dll 是一个 4.0 Framework dll。您可以通过浏览到 4.0 框架文件夹来添加引用,但这将阻止您的应用程序编译。
相反,如果您想使用 4.0 功能,您应该将应用程序的目标更改为 4.0
The Add Reference Dialog from the Productivity Power Tools is filtering for 3.5 framework assemblies because you're application is undoubtedly targeting 3.5.
The System.ComponentModel.Composition.dll is a 4.0 Framework dll. You can add the reference by browsing to the 4.0 framework folder but this will stop your application from compiling.
Instead you should change the target of your application to 4.0 if you want to use 4.0 features