Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(444)

Delta Between Two Patch Sets: Calendar.ASP.NET.MVC5/App_Start/BundleConfig.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Left Patch Set: Correct base revision Created 10 years, 2 months ago
Right Patch Set: Addressed peleyal's comments Created 9 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « .hgignore ('k') | Calendar.ASP.NET.MVC5/App_Start/FilterConfig.cs » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 using System.Web; 1 // This file is added automatically by the MVC 5 application template.
peleyal 2015/01/12 08:11:24 Did you change this file? If so, add the Google p
jmcgrew 2015/02/20 02:53:17 Done.
2
3 using System.Web;
2 using System.Web.Optimization; 4 using System.Web.Optimization;
3 5
4 namespace Calendar.ASP.NET.MVC5 6 namespace Calendar.ASP.NET.MVC5
5 { 7 {
6 public class BundleConfig 8 public class BundleConfig
7 { 9 {
8 // For more information on bundling, visit http://go.microsoft.com/fwlin k/?LinkId=301862 10 // For more information on bundling, visit http://go.microsoft.com/fwlin k/?LinkId=301862
9 public static void RegisterBundles(BundleCollection bundles) 11 public static void RegisterBundles(BundleCollection bundles)
10 { 12 {
11 bundles.Add(new ScriptBundle("~/bundles/jquery").Include( 13 bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
(...skipping 10 matching lines...) Expand all
22 bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( 24 bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
23 "~/Scripts/bootstrap.js", 25 "~/Scripts/bootstrap.js",
24 "~/Scripts/respond.js")); 26 "~/Scripts/respond.js"));
25 27
26 bundles.Add(new StyleBundle("~/Content/css").Include( 28 bundles.Add(new StyleBundle("~/Content/css").Include(
27 "~/Content/bootstrap.css", 29 "~/Content/bootstrap.css",
28 "~/Content/site.css")); 30 "~/Content/site.css"));
29 } 31 }
30 } 32 }
31 } 33 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b