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