C# 在web.config中设置debug='false'会导致绑定失败

C# 在web.config中设置debug='false'会导致绑定失败,c#,asp.net-mvc,bundling-and-minification,C#,Asp.net Mvc,Bundling And Minification,当我更改为在不调试的情况下运行时,我的绑定在html中没有包含正确的路径。它正在删除文件名 using System.Web; using System.Web.Optimization; namespace Search { public class BundleConfig { // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725

当我更改为在不调试的情况下运行时,我的绑定在html中没有包含正确的路径。它正在删除文件名

using System.Web;
using System.Web.Optimization;

namespace Search
{
    public class BundleConfig
    {
        // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
        public static void RegisterBundles(BundleCollection bundles)
        {
            bundles.UseCdn = true;

            var jqueryuiCdnPath = "http://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/jquery-ui.min.js";
            var knockoutCdnPath = "http://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js";
            var modernizerCdnPath = "";

            bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                        "~/Scripts/jquery-{version}.js",
                        "~/Scripts/jquery.printPage.js"
                        ));

            bundles.Add(new ScriptBundle("~/bundles/jqueryui", jqueryuiCdnPath).Include(
                        "~/Scripts/jquery-ui-{version}.custom.js"));

            bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                        "~/Scripts/jquery.unobtrusive*",
                        "~/Scripts/jquery.validate*"));

            bundles.Add(new ScriptBundle("~/bundles/knockout", knockoutCdnPath).Include(
                "~/Scripts/knockout-2.1.0.debug.js"));

            // Use the development version of Modernizr to develop with and learn from. Then, when you're
            // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
            bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
                        "~/Scripts/modernizr-*"));

            bundles.Add(new ScriptBundle("~/bundles/scpa").Include(
            "~/Scripts/scpa.js"));


            bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/NewSite.css").Include("~/Content/PagedList.css"));


            bundles.Add(new StyleBundle("~/Content/themes/redmond").Include(
                        "~/Content/themes/redmond/jquery-ui-{version}.custom.css"));
        }
    }
}
my_layout.cshtml中的这些行

    @Styles.Render("~/content/themes/redmond")
    @Styles.Render("~/content/css")
在启用调试的情况下生成以下html

<link href="/Content/themes/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet"/>
<link href="/Content/NewSite.css" rel="stylesheet"/>
<link href="/Content/PagedList.css" rel="stylesheet"/>
但是,在关闭调试的情况下,会生成此命令

<link href="/content/themes/redmond?v=vAH9QfqxdFYSzS_GtpWa8fGJ5s-xvZ9vhODh9AGxIbo1" rel="stylesheet"/>
<link href="/content/css?v=3o7zDFviiGqrSMyW4LTNH-J9tRGdIoONnnh_FMEm4Mg1" rel="stylesheet"/>

这就是它应该如何产生的

尽管您的第一个包可能无法工作,但您不能为包命名为与现有文件夹相同的名称。重命名第二个样式包,如:

bundles.Add(new StyleBundle("~/Content/cssRedmond").Include(...
因为它生成的链接将起作用,因为它不会与其他文件夹冲突:

<link href="/content/cssRedmond?v=..."  //This is OK
<link href="/content/themes/redmond?v=..." //Not OK. Conflicts with folder

感谢您的帮助,我在阅读有关捆绑的内容时没有理解到它会完全删除对发行版文件名的引用。@Mr.Manager这是捆绑部分。。。这些文件被缩小/合并为一个文件。所以现在客户端只需要下载一个文件而不是多个文件。请解释你们的反对票。