mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-23 13:07:07 +01:00
Nullify IIOManager
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
/// <summary>
|
||||
/// The base path for the app settings configuration files.
|
||||
/// </summary>
|
||||
public string? AppSettingsBasePath { get; set; }
|
||||
public string AppSettingsBasePath { get; set; } = "UNINITIALIZED"; // this is set in a hacky way in ServerFactory
|
||||
|
||||
/// <summary>
|
||||
/// Coerce the <see cref="Setup.SetupWizard"/> to select <see cref="DatabaseType.MariaDB"/>.
|
||||
|
||||
@@ -4,8 +4,6 @@ using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Tgstation.Server.Host.IO
|
||||
{
|
||||
/// <summary>
|
||||
@@ -59,7 +57,7 @@ namespace Tgstation.Server.Host.IO
|
||||
/// <returns>A <see cref="ValueTask"/> representing the running operation.</returns>
|
||||
ValueTask CopyDirectory(
|
||||
IEnumerable<string> ignore,
|
||||
Func<string, string, ValueTask> postCopyCallback,
|
||||
Func<string, string, ValueTask>? postCopyCallback,
|
||||
string src,
|
||||
string dest,
|
||||
int? taskThrottle,
|
||||
|
||||
Reference in New Issue
Block a user