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:
parent
b9361dd2ad
commit
400372a21f
@ -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\**" />
|
||||||
|
@ -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>
|
||||||
|
BIN
Patcher/PatchGenerator/Resources/PatchClient.exe
(Stored with Git LFS)
BIN
Patcher/PatchGenerator/Resources/PatchClient.exe
(Stored with Git LFS)
Binary file not shown.
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user