ASP.net 在哪里将程序集添加到 web.config 而仅编译 dll?
我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该按照错误消息中的说明进行操作,并在类库项目中添加对 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 theSystem
entry in the.NET
tab.