Added Miniprofiler.MVC3, updated log grid.

This commit is contained in:
kay.one 2011-11-23 21:50:41 -08:00
parent 3c273b9328
commit f513878d78
14 changed files with 25867 additions and 97 deletions

View file

@ -0,0 +1,12 @@
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
[assembly: WebActivator.PreApplicationStartMethod(typeof(NzbDrone.Web.App_Start.EntityFramework_SqlServerCompact), "Start")]
namespace NzbDrone.Web.App_Start {
public static class EntityFramework_SqlServerCompact {
public static void Start() {
Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0");
}
}
}