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.
我正在尝试为 Umbraco 5 创建插件。我在所有示例中都提到了 AssemblyInfo.cs 的以下行,以便标记要导出的程序集:
[assembly: AssemblyContainsPlugins]
我遇到的麻烦是我收到 AssemblyContainsPlugins 和 AssemblyContainsPluginsAttribute 的“类型或命名空间”错误。我尝试搜索名称以查看我没有引用但找不到的程序集。
谁能看到我在这里错过了什么?
是的,你错过了这个 using 声明:
using Umbraco.Cms.Web;