Skip to content

Commit

Permalink
Version 5.2.3 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot authored Jan 28, 2024
1 parent 80faa87 commit a6f5d43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions NLog.Windows.Forms/NLog.Windows.Forms.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net35;netcoreapp3.1;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net35;netcoreapp3.1;net6.0-windows;net8.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyTitle>NLog.Windows.Forms</AssemblyTitle>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
Expand All @@ -20,9 +20,7 @@
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
- Added README.md to nuget-package
- Fixed NullReferenceException for RichTextBoxTarget (@snakefoot)
- Updated to NLog v5.2.2 (@snakefoot)
- Added NET8 as target-platform
</PackageReleaseNotes>

<SignAssembly>true</SignAssembly>
Expand All @@ -33,7 +31,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsTrimmable>true</IsTrimmable>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
<!-- EmbedUntrackedSources for deterministic build -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 5.2.2.{build}
version: 5.2.3.{build}
image: Visual Studio 2022
clone_folder: c:\projects\nlog
configuration: Release
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.2.2" # Also update version for minor versions in appveyor.yml
$versionPrefix = "5.2.3" # Also update version for minor versions in appveyor.yml
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
if ($env:APPVEYOR_PULL_REQUEST_NUMBER) {
Expand Down

0 comments on commit a6f5d43

Please sign in to comment.