ASP.net 在哪里将程序集添加到 web.config 而仅编译 dll?

发布于 2024-10-04 09:37:48 字数 316 浏览 3 评论 0原文

我需要从 ASP.NET 源编译一个类库 (DLL)。现在,当我尝试构建时,它说:

类型 'System.ComponentModel.ISupportInitialize' 是在一个不是在程序集中定义的 参考。您必须添加参考 组装'系统,版本=2.0.0.0, 文化=中立, PublicKeyToken=b77a5c561934e089'。

现在我知道我必须将其放入 web.config 文件中。但没有 web.config 文件,它只是需要编译的 dll 的源代码。

我该怎么做?

I need to compile a class library (DLL) from an ASP.NET source. Now when I try to build it says this:

The type
'System.ComponentModel.ISupportInitialize'
is defined in an assembly that is not
referenced. You must add a reference
to assembly 'System, Version=2.0.0.0,
Culture=neutral,
PublicKeyToken=b77a5c561934e089'.

Now I know that I have to put it in the web.config file. But there is no web.config file it's just the source of the dll that needs to be compiled.

How can I do this?

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

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

发布评论

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

评论(1

困倦 2024-10-11 09:37:48

您应该按照错误消息中的说明进行操作,并在类库项目中添加对 System.dll 程序集的引用。

右键单击您的项目,在上下文菜单中选择添加引用...,然后在.NET 选项卡中选择System 条目。

You should follow the directions in the error message and add a reference to the System.dll assembly in your class library project.

Right-click on your project, select Add Reference... in the context menu, then choose the System entry in the .NET tab.

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