DotNetNuke Starter Kit 版本 05.06.01 创建旧的清单文件
我在 Visual Studio 2010 上安装了入门工具包版本 05.06.01,当我创建编译模块时,清单文件的第一行是:
<dotnetnuke version="3.0" type="Module">
不应该是版本 5.0
谢谢。
I installed the starter kit version 05.06.01 on visual studio 2010 and when I create a compiled module, the first line of the manifest file is:
<dotnetnuke version="3.0" type="Module">
Shouldn't it be version 5.0
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Starter Kit 的清单使用较旧的“模块”清单类型,当前版本为 3.0。这与 DotNetNuke 主要版本或清单中描述的模块版本无关。模块清单类型仅用于打包模块,并且兼容DNN4和DNN5。
在 DNN5 中,最好使用 5.0 版本的清单类型“Package”。更具体地说,“Package”是 新扩展安装程序。 “包”类型可用于安装所有扩展:模块、皮肤、身份验证提供程序等。包清单类型与 DNN4 不兼容,身份验证提供程序除外(自 4.6.2 起)。
Starter Kit 尚未更新到新的软件包系统,但您可以尝试Christoc 的 DotNetNuke 模块开发模板来获取DNN5 体现。
Starter Kit's manifest uses the older "Module" manifest type, for which the current version is 3.0. This is not related to the DotNetNuke major version, or the version of the module described in the manifest. Module manifest type is used only to package modules, and it is compatible with DNN4 and DNN5.
In DNN5 it is better to use the manifest type "Package", version 5.0. More specifically, "Package" is the manifest type used by the new extension installer. "Package" type can be used to install all extensions: modules, skins, authentication providers, and so on. Package manifest type is not compatible with DNN4, with one exception, authentication providers (since 4.6.2).
Starter Kit has not been updated to the new package system yet, but you can try Christoc's DotNetNuke Module Development Template to get DNN5 manifests.