update .net core project

This commit is contained in:
Luke Pulverenti 2017-01-24 15:40:40 -05:00
parent b9f758e14d
commit e140da0ddf
2 changed files with 2 additions and 2 deletions

View file

@ -193,7 +193,7 @@ namespace Emby.Server
/// <param name="options">The options.</param> /// <param name="options">The options.</param>
private static void RunApplication(ServerApplicationPaths appPaths, ILogManager logManager, StartupOptions options, EnvironmentInfo environmentInfo) 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)); fileSystem.AddShortcutHandler(new MbLinkShortcutHandler(fileSystem));

View file

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