Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

BundleConfig.cs 1.1KB

12345678910111213141516171819202122232425262728
  1. using System.Web;
  2. using System.Web.Optimization;
  3. namespace Logs_test
  4. {
  5. public class BundleConfig
  6. {
  7. // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
  8. public static void RegisterBundles(BundleCollection bundles)
  9. {
  10. bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
  11. "~/Scripts/jquery-{version}.js"));
  12. // Use the development version of Modernizr to develop with and learn from. Then, when you're
  13. // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
  14. bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
  15. "~/Scripts/modernizr-*"));
  16. bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
  17. "~/Scripts/bootstrap.js",
  18. "~/Scripts/respond.js"));
  19. bundles.Add(new StyleBundle("~/Content/css").Include(
  20. "~/Content/bootstrap.css",
  21. "~/Content/site.css"));
  22. }
  23. }
  24. }