Luke Pulverenti преди 8 години
родител
ревизия
6ce6ed7d9c
променени са 2 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 2 1
      Emby.Server.Core/ApplicationHost.cs
  2. 1 0
      Emby.Server.Implementations/Emby.Server.Implementations.csproj

+ 2 - 1
Emby.Server.Core/ApplicationHost.cs

@@ -491,7 +491,8 @@ namespace Emby.Server.Core
         {
             var migrations = new List<IVersionMigration>
             {
-                new LibraryScanMigration(ServerConfigurationManager, TaskManager)
+                new LibraryScanMigration(ServerConfigurationManager, TaskManager),
+                new GuideMigration(ServerConfigurationManager, TaskManager)
             };
 
             foreach (var task in migrations)

+ 1 - 0
Emby.Server.Implementations/Emby.Server.Implementations.csproj

@@ -182,6 +182,7 @@
     <Compile Include="MediaEncoder\EncodingManager.cs" />
     <Compile Include="Migrations\IVersionMigration.cs" />
     <Compile Include="Migrations\LibraryScanMigration.cs" />
+    <Compile Include="Migrations\GuideMigration.cs" />
     <Compile Include="Migrations\UpdateLevelMigration.cs" />
     <Compile Include="News\NewsEntryPoint.cs" />
     <Compile Include="News\NewsService.cs" />