move sync repository to portable project

This commit is contained in:
Luke Pulverenti
2016-11-19 00:52:49 -05:00
parent e58e34ceca
commit 65a1ef020b
32 changed files with 869 additions and 1296 deletions

View File

@@ -44,7 +44,8 @@ namespace Emby.Server.Core
IJsonSerializer json,
IXmlSerializer xml,
IEnvironmentInfo environment,
ICertificate certificate)
ICertificate certificate,
bool enableDualModeSockets)
{
var logger = logManager.GetLogger("HttpServer");
@@ -63,7 +64,8 @@ namespace Emby.Server.Core
environment,
certificate,
new StreamFactory(),
GetParseFn);
GetParseFn,
enableDualModeSockets);
}
private static Func<string, object> GetParseFn(Type propertyType)