removed base kernel and ikernel

This commit is contained in:
LukePulverenti
2013-03-07 00:34:00 -05:00
parent 60545c433b
commit 4f67fc4aef
94 changed files with 552 additions and 870 deletions

View File

@@ -18,20 +18,6 @@ namespace MediaBrowser.Model.Configuration
[ProtoMember(1)]
public bool EnableDebugLevelLogging { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [enable HTTP level logging].
/// </summary>
/// <value><c>true</c> if [enable HTTP level logging]; otherwise, <c>false</c>.</value>
[ProtoMember(56)]
public bool EnableHttpLevelLogging { get; set; }
/// <summary>
/// Gets or sets the HTTP server port number.
/// </summary>
/// <value>The HTTP server port number.</value>
[ProtoMember(2)]
public int HttpServerPortNumber { get; set; }
/// <summary>
/// Enable automatically and silently updating of the application
/// </summary>
@@ -59,13 +45,6 @@ namespace MediaBrowser.Model.Configuration
[ProtoMember(58)]
public bool RunAtStartup { get; set; }
/// <summary>
/// Gets or sets the legacy web socket port number.
/// </summary>
/// <value>The legacy web socket port number.</value>
[ProtoMember(59)]
public int LegacyWebSocketPortNumber { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is first run.
/// </summary>
@@ -78,14 +57,9 @@ namespace MediaBrowser.Model.Configuration
/// </summary>
public BaseApplicationConfiguration()
{
HttpServerPortNumber = 8096;
LegacyWebSocketPortNumber = 8945;
EnableAutoUpdate = true;
LogFileRetentionDays = 14;
EnableHttpLevelLogging = true;
#if (DEBUG)
EnableDebugLevelLogging = true;
#endif