Orchard - 如何从食谱中设置当前主题
Orchard - How to set current theme from recipe
我需要将 Orchard 食谱中的主题设置为当前主题。
主题已通过命令 theme activate "KrakeDefaultTheme"
.
启用
我知道我可以使用元素 <Theme packageId="ThemeName" current="true" />
从图库中下载主题并将其设置为当前主题,但我不需要下载它,它是我制作的自定义主题并且它是已经在 Themes 文件夹中。
有什么办法吗?
theme activate
命令会将您的主题设置为当前主题。您可以使用 <command>
元素
从您的食谱中执行此操作
<Command>
theme activate "KrakeDefaultTheme"
</Command>
我需要将 Orchard 食谱中的主题设置为当前主题。
主题已通过命令 theme activate "KrakeDefaultTheme"
.
我知道我可以使用元素 <Theme packageId="ThemeName" current="true" />
从图库中下载主题并将其设置为当前主题,但我不需要下载它,它是我制作的自定义主题并且它是已经在 Themes 文件夹中。
有什么办法吗?
theme activate
命令会将您的主题设置为当前主题。您可以使用 <command>
元素
<Command>
theme activate "KrakeDefaultTheme"
</Command>