summaryrefslogtreecommitdiff
path: root/Project-Unite/App_Start/BundleConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Project-Unite/App_Start/BundleConfig.cs')
-rw-r--r--Project-Unite/App_Start/BundleConfig.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Project-Unite/App_Start/BundleConfig.cs b/Project-Unite/App_Start/BundleConfig.cs
new file mode 100644
index 0000000..b0ec54b
--- /dev/null
+++ b/Project-Unite/App_Start/BundleConfig.cs
@@ -0,0 +1,31 @@
+using System.Web;
+using System.Web.Optimization;
+
+namespace Project_Unite
+{
+ public class BundleConfig
+ {
+ // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
+ 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 http://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/respond.js"));
+
+ bundles.Add(new StyleBundle("~/Content/css").Include(
+ "~/Content/bootstrap.css",
+ "~/Content/site.css"));
+ }
+ }
+}