Skip to content

Commit

Permalink
update NLog to version 5.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Sep 13, 2024
1 parent 0287c6e commit 8068ded
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
copy updater\bin\Release\net6.0-windows\updater.exe updater-%VERSION%
copy updater\bin\Release\net6.0-windows\updater.dll updater-%VERSION%
copy updater\bin\Release\net6.0-windows\updater.runtimeconfig.json updater-%VERSION%
copy "%USERPROFILE%\.nuget\packages\nlog\5.3.3\lib\netstandard2.0\NLog.dll" updater-%VERSION%
copy "%USERPROFILE%\.nuget\packages\nlog\5.3.4\lib\netstandard2.0\NLog.dll" updater-%VERSION%
copy "%USERPROFILE%\.nuget\packages\newtonsoft.json\13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll" updater-%VERSION%
copy LICENSE updater-%VERSION%
md updater-%VERSION%\documentation
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ __[changes]__
* Blender updates will now use the newer 4.2 LTS release series, switching away
from the previously used Blender 3.6 LTS series.

__[maintenance]__

* NLog library is updated from 5.3.3 to 5.3.4.

## Version 2024.08.31.0

__[changes]__
Expand Down
2 changes: 1 addition & 1 deletion setup/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Source: "..\updater\bin\Release\net6.0-windows\updater.runtimeconfig.json"; Dest
; Newtonsoft.Json assembly (JSON deserialization)
Source: "{#GetEnv('USERPROFILE')}\.nuget\packages\newtonsoft.json\13.0.3\lib\netstandard2.0\Newtonsoft.Json.dll"; DestDir: "{app}"; Flags: ignoreversion
; NLog main assembly (logging)
Source: "{#GetEnv('USERPROFILE')}\.nuget\packages\nlog\5.3.3\lib\netstandard2.0\NLog.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "{#GetEnv('USERPROFILE')}\.nuget\packages\nlog\5.3.4\lib\netstandard2.0\NLog.dll"; DestDir: "{app}"; Flags: ignoreversion
; GPL 3 license text
Source: "..\LICENSE"; DestDir: "{app}"; Flags: ignoreversion
; documentation files
Expand Down
2 changes: 1 addition & 1 deletion updater/updater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.3.3" />
<PackageReference Include="NLog" Version="5.3.4" />
</ItemGroup>

<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
Expand Down

0 comments on commit 8068ded

Please sign in to comment.