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

发布于 2024-11-15 04:04:55 字数 347 浏览 3 评论 0原文

在命令行中,我使用 /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.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把昨日还给我 2024-11-22 04:04:55

添加参考对话框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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文