I'm trying to use knockout.js imported from NuGet which includes knockout-3.2.0.js
and knockout-3.2.0.debug.js
. I add a new bundle like
bundles.Add(new ScriptBundle("~/bundles/knockout").Include(
"~/Scripts/knockout-{version}.js"));
However when I inspect the webpage, it turns out that the loaded bundle is knockout-3.2.0.debug.js
.
I read the following questions
- what is {version} in ScriptBundle("~/scripts/jquery-{version}.js")
- {version} wildcard in MVC4 Bundle
which seem not to be particularly helpful in answering my question.