diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
index a6d43a69a1..81fdb96d2f 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
@@ -159,22 +159,10 @@ namespace Emby.Server.Implementations.ScheduledTasks
}
}
- ///
- /// Gets the name of the task
- ///
- /// The name.
public string Name => "Chapter image extraction";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => "Creates thumbnails for videos that have chapters.";
- ///
- /// Gets the category.
- ///
- /// The category.
public string Category => "Library";
public string Key => "RefreshChapterImages";
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
index fc9d57e0b3..6ec83b5c0c 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
@@ -158,30 +158,14 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
}
}
- ///
- /// Gets the name of the task
- ///
- /// The name.
public string Name => "Cache file cleanup";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => "Deletes cache files no longer needed by the system";
- ///
- /// Gets the category.
- ///
- /// The category.
public string Category => "Maintenance";
public string Key => "DeleteCacheFiles";
- ///
- /// Gets a value indicating whether this instance is hidden.
- ///
- /// true if this instance is hidden; otherwise, false.
public bool IsHidden => false;
public bool IsEnabled => true;
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
index ddb74ef3e8..e468c301a9 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
@@ -81,30 +81,14 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
return Task.CompletedTask;
}
- ///
- /// Gets the name of the task
- ///
- /// The name.
public string Name => "Log file cleanup";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => string.Format("Deletes log files that are more than {0} days old.", ConfigurationManager.CommonConfiguration.LogFileRetentionDays);
- ///
- /// Gets the category.
- ///
- /// The category.
public string Category => "Maintenance";
public string Key => "CleanLogFiles";
- ///
- /// Gets a value indicating whether this instance is hidden.
- ///
- /// true if this instance is hidden; otherwise, false.
public bool IsHidden => false;
public bool IsEnabled => true;
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
index ebdc6a13e4..d70799c479 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
@@ -58,22 +58,10 @@ namespace Emby.Server.Implementations.ScheduledTasks
return _libraryManager.ValidatePeople(cancellationToken, progress);
}
- ///
- /// Gets the name of the task
- ///
- /// The name.
public string Name => "Refresh people";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => "Updates metadata for actors and directors in your media library.";
- ///
- /// Gets the category.
- ///
- /// The category.
public string Category => "Library";
public string Key => "RefreshPeople";
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
index 8e27b0eb80..798dfb2aed 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
@@ -105,16 +105,8 @@ namespace Emby.Server.Implementations.ScheduledTasks
progress.Report(100);
}
- ///
- /// Gets the name of the task
- ///
- /// The name.
public string Name => "Check for plugin updates";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => "Downloads and installs updates for plugins that are configured to update automatically.";
public string Category => "Application";
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
index 618efd732b..1a3d85ad7f 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
@@ -58,22 +58,10 @@ namespace Emby.Server.Implementations.ScheduledTasks
return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
}
- ///
- /// Gets the name.
- ///
- /// The name.
public string Name => "Scan media library";
- ///
- /// Gets the description.
- ///
- /// The description.
public string Description => "Scans your media library and refreshes metatata based on configuration.";
- ///
- /// Gets the category.
- ///
- /// The category.
public string Category => "Library";
public string Key => "RefreshLibrary";