Slight re-work of ApplicationPaths so that we can have inherited versions for the UI and Server

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-18 16:38:02 -04:00
parent a508a997d9
commit 59a3dcc8c1
11 changed files with 312 additions and 329 deletions

View File

@@ -17,7 +17,7 @@ using MediaBrowser.Model.Progress;
namespace MediaBrowser.Controller
{
public class Kernel : BaseKernel<ServerConfiguration>
public class Kernel : BaseKernel<ServerConfiguration, ServerApplicationPaths>
{
public static Kernel Instance { get; private set; }
@@ -43,7 +43,7 @@ namespace MediaBrowser.Controller
public IEnumerable<IBaseItemResolver> EntityResolvers { get; private set; }
/// <summary>
/// Creates a kernal based on a Data path, which is akin to our current programdata path
/// Creates a kernel based on a Data path, which is akin to our current programdata path
/// </summary>
public Kernel()
: base()