Is it possible to include a whole directory rather than just a path in Bundle.config
? Its much easier than explicitly stating each file.
I've typed in directory
as an attribute for the include
tag but auto-suggest isn't suggesting anything which makes me think its not possible?
For example;
<?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>