New: Use dotnet tooling, produce 64bit build on windows

This commit is contained in:
ta264 2019-10-17 21:42:49 +01:00 committed by Qstick
parent 1e50af5d93
commit b1349213f2
41 changed files with 780 additions and 522 deletions

View file

@ -201,7 +201,7 @@ namespace NzbDrone.Core.Configuration
}
}
public string UiFolder => GetValue("UiFolder", "UI", false);
public string UiFolder => BuildInfo.IsDebug ? Path.Combine("..", "UI") : "UI";
public bool UpdateAutomatically => GetValueBoolean("UpdateAutomatically", false, false);