Skip to content

Commit

Permalink
update NLog to version 5.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed May 1, 2024
1 parent 6f563d9 commit f5ca7f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.1\lib\netstandard2.0\NLog.dll" updater-%VERSION%
copy "%USERPROFILE%\.nuget\packages\nlog\5.3.2\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
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ __[changes]__
__[maintenance]__

* Update certificate information for Opera GX installers.
* NLog library is updated from 5.2.8 to 5.3.1.
* NLog library is updated from 5.2.8 to 5.3.2.

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

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

0 comments on commit f5ca7f6

Please sign in to comment.