From 400372a21fcc8ae285ab3c58a57ff2366edd63ba Mon Sep 17 00:00:00 2001 From: "waffle.lord" Date: Wed, 15 Jun 2022 14:01:47 -0400 Subject: [PATCH] add missing logging, version bump --- Patcher/PatchClient/PatchClient.csproj | 4 ++-- Patcher/PatchGenerator/PatchGenerator.csproj | 4 ++-- Patcher/PatchGenerator/Resources/PatchClient.exe | 2 +- Patcher/PatcherUtils/PatchHelper.cs | 2 ++ 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Patcher/PatchClient/PatchClient.csproj b/Patcher/PatchClient/PatchClient.csproj index 8682ef3..184eb16 100644 --- a/Patcher/PatchClient/PatchClient.csproj +++ b/Patcher/PatchClient/PatchClient.csproj @@ -4,8 +4,8 @@ net6.0 true enable - 2.9 - 2.9 + 2.9.1 + 2.9.1 diff --git a/Patcher/PatchGenerator/PatchGenerator.csproj b/Patcher/PatchGenerator/PatchGenerator.csproj index 52ff50b..e65b5ff 100644 --- a/Patcher/PatchGenerator/PatchGenerator.csproj +++ b/Patcher/PatchGenerator/PatchGenerator.csproj @@ -4,8 +4,8 @@ net6.0 true enable - 2.9 - 2.9 + 2.9.1 + 2.9.1 diff --git a/Patcher/PatchGenerator/Resources/PatchClient.exe b/Patcher/PatchGenerator/Resources/PatchClient.exe index c0378f1..7c57d50 100644 --- a/Patcher/PatchGenerator/Resources/PatchClient.exe +++ b/Patcher/PatchGenerator/Resources/PatchClient.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dccb066e101524e45cc3bca09149f79ca606fbce4ef0a820e1377e0f92a823d9 +oid sha256:f9cf2ae93f039eb57c003823bb4f40acddc105c7d9bbeef4fea0160bb82ed274 size 25323180 diff --git a/Patcher/PatcherUtils/PatchHelper.cs b/Patcher/PatcherUtils/PatchHelper.cs index 73a9b85..7875b84 100644 --- a/Patcher/PatcherUtils/PatchHelper.cs +++ b/Patcher/PatcherUtils/PatchHelper.cs @@ -447,6 +447,7 @@ namespace PatcherUtils try { File.Copy(deltaFile.FullName, destination, true); + PatchLogger.LogInfo($"File added: {destination}"); } catch(Exception ex) { @@ -467,6 +468,7 @@ namespace PatcherUtils try { File.Delete(delFilePath); + PatchLogger.LogInfo($"File removed: {delFilePath}"); } catch(Exception ex) {