mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Added Miniprofiler.MVC3, updated log grid.
This commit is contained in:
parent
3c273b9328
commit
f513878d78
14 changed files with 25867 additions and 97 deletions
12
NzbDrone.Web/App_Start/EntityFramework.SqlServerCompact.cs
Normal file
12
NzbDrone.Web/App_Start/EntityFramework.SqlServerCompact.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue