有没有办法在不同路径中设置默认内容位置或使用不同的名称而不是内容?
编辑: 因此,我可以将与内容文件夹相关的nuget中的bootstrap或其他内容下载到新目录中。
答案 0 :(得分:0)
您可以使用您喜欢的任何名称。只需重命名该文件夹并更新BundleConfig
以反映新名称:
bundles.Add(new StyleBundle("~/SomeOtherName/css").Include(
"~/SomeOtherName/bootstrap.css",
"~/SomeOtherName/site.css"));
在_Layout.cshtml
中,请确保包含正确的名称:
@Styles.Render("~/SomeOtherName/css")