Member 12303210 Ответов: 0

Конфигурация пакета в MVC 5 не рендерится после размещения приложения в IIS


Мы разрабатываем приложение в MVC5 и используем Visual studio 2017. Мы добавили все распространенные файлы jquery и css в bundle config, но они не рендерятся после того, как приложение будет размещено в IIS. На этапе разработки приложение работает отлично.

BundleConfig.в CS
public static void RegisterBundles(BundleCollection bundles)
       {
           bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
                       "~/Scripts/jquery-{version}.js"));

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

           // Use the development version of Modernizr to develop with and learn from. Then, when you're
           // ready for production, use the build tool at https://modernizr.com to pick only the tests you need.
           bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
                       "~/Scripts/modernizr-*"));
           bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
                      "~/Scripts/bootstrap.js",
                      "~/Scripts/jquery.js",
                      "~/Scripts/jquery.validate.min.js",
                      "~/Scripts/jquery.datetimepicker.full.js",
                      "~/Scripts/jquery-3.3.1.js",
                      "~/Scripts/dataTables.bootstrap4.min.js",
                      "~/Scripts/jquery.dataTables.min.js",
                      "~/Scripts/jquery.validate.min.js",
                      "~/Scripts/jquery.validate.unobtrusive.js"));

           bundles.Add(new StyleBundle("~/Content/css").Include(
                     "~/Content/bootstrap.css",
                     "~/Content/site.css",
                     "~/Content/jquery.datetimepicker.css",
                     "~/Content/themes/base/jquery-ui.min.css",
                     "~/Content/jquery.dataTables.min.css"));

       }


Макет.cshtml по
@Styles.Render("~/Content/css")
  @Scripts.Render("~/bundles/modernizr")
  @Scripts.Render("~/bundles/jquery")
  @Scripts.Render("~/bundles/bootstrap")
  @RenderSection("scripts", required: false)


WebGrease is also added by default as a reference in the project.The same is also present in Web.Config file


<dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
      </dependentAssembly>


Please help to complete the hosting.


Что я уже пробовал:

Мы установили все компоненты IIS, которые отсутствовали на сервере.
Проверен
WebGrease 
что было совершенно необходимо.

0 Ответов