Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将参考 TlGallioAddOn.dll 添加到我们的示例 c# 应用程序中。我使用了该参考,例如using TlGallioAddOn;. 使用该 dll 的引用时,它显示以下错误。
using TlGallioAddOn;
The type or namespace name 'TlGallioAddOn' could not be found (are you missing a using directive or an assembly reference?)
你们能帮我解决这个问题吗?
检查两个项目的框架目标。
项目默认值现在是 .NET 4.0 客户端。如果您已针对 .NET 4.0(完整版)编译插件项目,则需要修改要为其添加引用的项目以使用 .NET 4.0(完整版)。
右键单击解决方案资源管理器中的项目。单击“添加引用”,然后找到您的 DLL。它将导入 DLL 并解决错误。