0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 17:10:46 -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> <TargetFramework>net6.0</TargetFramework>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract> <IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<AssemblyVersion>2.9</AssemblyVersion> <AssemblyVersion>2.9.1</AssemblyVersion>
<FileVersion>2.9</FileVersion> <FileVersion>2.9.1</FileVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<AvaloniaResource Include="Assets\**" /> <AvaloniaResource Include="Assets\**" />

View File

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

Binary file not shown.

View File

@ -447,6 +447,7 @@ namespace PatcherUtils
try try
{ {
File.Copy(deltaFile.FullName, destination, true); File.Copy(deltaFile.FullName, destination, true);
PatchLogger.LogInfo($"File added: {destination}");
} }
catch(Exception ex) catch(Exception ex)
{ {
@ -467,6 +468,7 @@ namespace PatcherUtils
try try
{ {
File.Delete(delFilePath); File.Delete(delFilePath);
PatchLogger.LogInfo($"File removed: {delFilePath}");
} }
catch(Exception ex) catch(Exception ex)
{ {