소스 검색

update .net core project

Luke Pulverenti 8 년 전
부모
커밋
e140da0ddf
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/Emby.Server/Program.cs
  2. 1 1
      src/Emby.Server/project.json

+ 1 - 1
src/Emby.Server/Program.cs

@@ -193,7 +193,7 @@ namespace Emby.Server
         /// <param name="options">The options.</param>
         private static void RunApplication(ServerApplicationPaths appPaths, ILogManager logManager, StartupOptions options, EnvironmentInfo environmentInfo)
         {
-            var fileSystem = new ManagedFileSystem(logManager.GetLogger("FileSystem"), true, true, true);
+            var fileSystem = new ManagedFileSystem(logManager.GetLogger("FileSystem"), true, true, true, appPaths.TempDirectory);
 
             fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));
 

+ 1 - 1
src/Emby.Server/project.json

@@ -1,5 +1,5 @@
 {
-  "version": "3.1.0-*",
+  "version": "3.1.0.1",
   "buildOptions": {
     "emitEntryPoint": true
   },