New: Switch to ASPNetCore Kestrel and SignalR

This commit is contained in:
ta264 2019-10-28 21:12:26 +00:00 committed by Qstick
parent f136449573
commit 8a938f6856
47 changed files with 847 additions and 1288 deletions

View file

@ -22,7 +22,8 @@ namespace Lidarr.Api.V1.Config
public string ConsoleLogLevel { get; set; }
public string Branch { get; set; }
public string ApiKey { get; set; }
public string SslCertHash { get; set; }
public string SslCertPath { get; set; }
public string SslCertPassword { get; set; }
public string UrlBase { get; set; }
public bool UpdateAutomatically { get; set; }
public UpdateMechanism UpdateMechanism { get; set; }
@ -61,7 +62,8 @@ namespace Lidarr.Api.V1.Config
ConsoleLogLevel = model.ConsoleLogLevel,
Branch = model.Branch,
ApiKey = model.ApiKey,
SslCertHash = model.SslCertHash,
SslCertPath = model.SslCertPath,
SslCertPassword = model.SslCertPassword,
UrlBase = model.UrlBase,
UpdateAutomatically = model.UpdateAutomatically,
UpdateMechanism = model.UpdateMechanism,