ReferenceError: scForm is not defined in Sitecore 8

ReferenceError: scForm is not defined in Sitecore 8

我在 Sitecore 8 > 控制面板 中收到此 javascript-错误,例如单击 "Install a package" 或任何其他 link:

ReferenceError: scForm is not defined

在 Firebug 中查找,似乎缺少一个文件:http://my.site/-/speak/v1/assets/main.js

发现:出现这个错误,是因为文件App_Config/Include/.Sitecore.Speak.Important.config丢失。

为什么不见了?因为文件名以句点“.”开头,我们使用 TeamCity 和 Octopus Deploy / OctoPack 生成用于部署的 NuGet 包。

这是 OctoPack 的设计行为 - 即不在输出包中包含带前导句点的文件(请参阅 here)。但正如评论所述,现在有一个选项允许部署点文件:

在 TeamCity 中的构建步骤中(运行器类型 MsBuildVisual Studio (sln)),在字段 命令行参数,插入或追加以下内容:

/p:OctoPackNuGetArguments=-NoDefaultExcludes

谁他妈的用前导句点命名文件...