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)
{