是否可以在Bundle.config
中包含整个目录而不仅仅是路径?它比明确说明每个文件容易得多。
我已将directory
作为include
标记的属性输入,但自动建议并不表示任何让我认为不可能的内容?
例如;
<?xml version="1.0" encoding="utf-8" ?>
<bundles version="1.0">
<styleBundle path="~/Content/css">
<include path="~/Content/bootstrap/bootstrap.css" />
<include directory="~/Content/SomeDirectory" />
</styleBundle>
</bundles>
答案 0 :(得分:0)
作为explained here,有一个XSD可以确定Bundle.config
文件中的内容。
include
元素定义如下:
<xs:complexType name="include">
<xs:attribute name="path" type="xs:string" use="required" />
</xs:complexType>
因此,唯一允许的格式为<include path="~/Content/bootstrap/bootstrap.css" />
,其中path
应指向单个文件(see ReadBundle()
in BundleManifest.cs
)。