0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 17:30:44 -05:00

add missing logging, version bump

This commit is contained in:
IsWaffle 2022-06-15 14:01:47 -04:00
parent b9361dd2ad
commit 400372a21f
4 changed files with 7 additions and 5 deletions

View File

@ -4,8 +4,8 @@
<TargetFramework>net6.0</TargetFramework>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Nullable>enable</Nullable>
<AssemblyVersion>2.9</AssemblyVersion>
<FileVersion>2.9</FileVersion>
<AssemblyVersion>2.9.1</AssemblyVersion>
<FileVersion>2.9.1</FileVersion>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />

View File

@ -4,8 +4,8 @@
<TargetFramework>net6.0</TargetFramework>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Nullable>enable</Nullable>
<AssemblyVersion>2.9</AssemblyVersion>
<FileVersion>2.9</FileVersion>
<AssemblyVersion>2.9.1</AssemblyVersion>
<FileVersion>2.9.1</FileVersion>
</PropertyGroup>
<ItemGroup>

Binary file not shown.

View File

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