| 123456789101112131415161718192021222324252627282930313233343536 | 
							- using MediaBrowser.Common.IO;
 
- using MediaBrowser.Controller;
 
- using System.IO;
 
- using CommonIO;
 
- namespace MediaBrowser.Server.Startup.Common.Migrations
 
- {
 
-     public class DeprecatePlugins : IVersionMigration
 
-     {
 
-         private readonly IServerApplicationPaths _appPaths;
 
-         private readonly IFileSystem _fileSystem;
 
-         public DeprecatePlugins(IServerApplicationPaths appPaths, IFileSystem fileSystem)
 
-         {
 
-             _appPaths = appPaths;
 
-             _fileSystem = fileSystem;
 
-         }
 
-         public void Run()
 
-         {
 
-             RemovePlugin("MediaBrowser.Plugins.LocalTrailers.dll");
 
-         }
 
-         private void RemovePlugin(string filename)
 
-         {
 
-             try
 
-             {
 
-                 _fileSystem.DeleteFile(Path.Combine(_appPaths.PluginsPath, filename));
 
-             }
 
-             catch
 
-             {
 
-                 
 
-             }
 
-         }
 
-     }
 
- }
 
 
  |