remove self update capability from service

This commit is contained in:
Luke Pulverenti
2013-10-07 12:22:19 -04:00
parent 65f78ea5ad
commit 4a030a70a9
7 changed files with 96 additions and 26 deletions

View File

@@ -33,5 +33,17 @@ namespace MediaBrowser.ServerApplication.Native
return MainStartup.CanSelfRestart;
}
}
/// <summary>
/// Gets a value indicating whether this instance can self update.
/// </summary>
/// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
public static bool CanSelfUpdate
{
get
{
return MainStartup.CanSelfUpdate;
}
}
}
}