diff --git a/FileManager/Configuration.cs b/FileManager/Configuration.cs
index 6fb1be65..1d2ecd1d 100644
--- a/FileManager/Configuration.cs
+++ b/FileManager/Configuration.cs
@@ -156,6 +156,11 @@ namespace FileManager
private IConfigurationRoot configuration;
public void ConfigureLogging()
{
+ //// with code. also persists to Settings.json
+ //SetWithJsonPath("Serilog.WriteTo[1].Args", "path", logPath, true);
+ //// hack which achieves the same, in memory only
+ //configuration["Serilog:WriteTo:1:Args:path"] = logPath;
+
configuration = new ConfigurationBuilder()
.AddJsonFile(SettingsFilePath, optional: false, reloadOnChange: true)
.Build();
diff --git a/LibationLauncher/LibationLauncher.csproj b/LibationLauncher/LibationLauncher.csproj
index 58d68a87..416907c5 100644
--- a/LibationLauncher/LibationLauncher.csproj
+++ b/LibationLauncher/LibationLauncher.csproj
@@ -13,7 +13,7 @@
win-x64
- 5.3.0.1
+ 5.3.1.1