Skip to content

Commit

Permalink
update NLog to version 5.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Sep 6, 2023
1 parent 0f6ed70 commit 11efb3c
Show file tree
Hide file tree
Showing 4 changed files with 4 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 @@ -72,7 +72,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.2.3\lib\netstandard2.0\NLog.dll" updater-%VERSION%
copy "%USERPROFILE%\.nuget\packages\nlog\5.2.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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ improvements may be omitted.)_

__[maintenance]__

* NLog library is updated from 5.2.3 to 5.2.4.
* Update certificate information for Transmission installer.

## Version 2023.08.20.0
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.2.3\lib\netstandard2.0\NLog.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "{#GetEnv('USERPROFILE')}\.nuget\packages\nlog\5.2.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.2.3" />
<PackageReference Include="NLog" Version="5.2.4" />
</ItemGroup>

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

0 comments on commit 11efb3c

Please sign in to comment.