rework build scripts

This commit is contained in:
Luke Pulverenti
2014-11-05 14:28:41 -05:00
parent ccb4e58519
commit b5842f9f19
24 changed files with 66 additions and 45 deletions

View File

@@ -20,14 +20,15 @@ namespace MediaBrowser.Server.Implementations.Devices
private readonly IApplicationPaths _appPaths;
private readonly IJsonSerializer _json;
private ILogger _logger;
private readonly ILogger _logger;
private ConcurrentBag<DeviceInfo> _devices;
public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json)
public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json, ILogger logger)
{
_appPaths = appPaths;
_json = json;
_logger = logger;
}
private string GetDevicesPath()