Skip to content

Commit 27c96f7

Browse files
authored
Version 5.2.1 (#149)
1 parent fd53616 commit 27c96f7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

NLog.Windows.Forms/NLog.Windows.Forms.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<RepositoryType>git</RepositoryType>
2626
<AssemblyVersion>5.0.0.0</AssemblyVersion>
2727
<PackageReleaseNotes>
28-
- Updated to NLog v5.2 (@snakefoot)
29-
- Added LogManager.Setup() extension method RegisterWindowsForms() (@snakefoot)
28+
- Fixed NullReferenceException for RichTextBoxTarget (@snakefoot)
29+
- Updated to NLog v5.2.2 (@snakefoot)
3030

3131
Remember to register NLog.Windows.Forms in NLog.config
3232

@@ -41,7 +41,7 @@ Alternative register from code without reflection of assembly-types:
4141
</PropertyGroup>
4242

4343
<ItemGroup>
44-
<PackageReference Include="NLog" Version="5.2.0" />
44+
<PackageReference Include="NLog" Version="5.2.2" />
4545
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
4646
</ItemGroup>
4747

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 5.2.0.{build}
1+
version: 5.2.1.{build}
22
image: Visual Studio 2022
33
clone_folder: c:\projects\nlog
44
configuration: Release

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# creates NuGet package at \artifacts
33
dotnet --version
44

5-
$versionPrefix = "5.2.0" # Also update version for minor versions in appveyor.yml
5+
$versionPrefix = "5.2.1" # Also update version for minor versions in appveyor.yml
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {

0 commit comments

Comments
 (0)