Pacote de scripts da ASP.NET MVC não renderizado

Eu incluí a seguinte linha noBundleConfig.cs Arquivo:

bundles.Add(new ScriptBundle("~/bundles/jqueryajax").Include(
  "~/Scripts/jquery.unobtrusive-ajax.min.js"));

No entanto, quando tento renderizá-lo entre outros scripts, ele é ignorado.

Aqui está como eu renderizo os scripts:

@Scripts.Render(
    "~/bundles/jquery",
    "~/bundles/jqueryui",
    "~/bundles/jqueryajax",
    "~/bundles/jquerytree")

Esta é a saída HTML, ojqueryajax pacote é omitido:

<script src="/Scripts/jquery-1.9.1.js"></script>
<script src="/Scripts/jquery-ui-1.10.2.js"></script>
<script src="/Scripts/jquery.jstree.js"></script>

questionAnswers(1)

yourAnswerToTheQuestion