T4MVC支持区域中的静态文件?

时间:2011-10-24 01:02:05

标签: t4mvc

我开始大量使用T4MVC“链接”功能(例如@ Links.Content.Site_css)。有没有人知道是否有办法为存储在区域内的文件夹中的文件生成方法?我尝试对设置文件进行以下修改,但没有运气。

// Folders containing static files for which links are generated (e.g. Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas/Admin/Content"
};

非常感谢提前。

DS

2 个答案:

答案 0 :(得分:5)

而不是

"Areas/Admin/Content"

尝试使用:

@"Areas\Admin\Content"

认为会这样做。

答案 1 :(得分:3)

我根本不需要改变T4MVC.TT。将“区域”添加到T4MVC.TT.settings.T4中的StaticFilesFolders就可以了。

// Folders containing static files for which links are generated (e.g.            Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas"
};

感谢大卫的帮助。 : - )

PS - 使用T4MVC版本2.6.64