diff --git a/.gitignore b/.gitignore index aba9c594d7..08e21e25bf 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,5 @@ nuget.exe *DS_Store *.ncrunchsolution *.*sdf -*.ipch \ No newline at end of file +*.ipch +*.sln.ide \ No newline at end of file diff --git a/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.cs b/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.cs index d21b4b5b9d..cc429e1755 100644 --- a/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.cs +++ b/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.cs @@ -1016,7 +1016,7 @@ using Views #line default #line hidden - WriteLiteral(" \r\n \r\n\r\n"); } } diff --git a/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.js b/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.js index 4f6ca6a2a4..da220c76ad 100644 --- a/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.js +++ b/src/Microsoft.AspNet.Diagnostics/Views/ErrorPage.js @@ -135,9 +135,9 @@ if (el.addEventListener) { // DOM Events el.addEventListener(eventName, callback, false); } else if (el.attachEvent) { // IE8 events - el.attachEvent('on' + eventName, callback) + el.attachEvent("on" + eventName, callback) } else { - el['on' + type] = callback; + el["on" + type] = callback; } }); diff --git a/src/PageGenerator/Project.json b/src/PageGenerator/Project.json index 159d891d01..8ba728063f 100644 --- a/src/PageGenerator/Project.json +++ b/src/PageGenerator/Project.json @@ -2,7 +2,7 @@ "dependencies": { "Microsoft.AspNet.Diagnostics": "", "Microsoft.Net.Runtime.Interfaces": "0.1.0-alpha-*", - "Microsoft.AspNet.Mvc": "0.1.0-alpha-*" + "Microsoft.AspNet.Razor": "0.1.0-alpha-*" }, "configurations" : {