Skip to content

Commit

Permalink
Merge pull request #269 from NLog/release/4.5.1-aspnetcore
Browse files Browse the repository at this point in the history
Version 4.5.1 (asp.net core)
  • Loading branch information
304NotModified authored Apr 2, 2018
2 parents 1bfddc9 + a82e9f6 commit 7fe3a15
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

### v4.5.1-aspnetcore (2018/04/02)
- [#268](https://github.com/nlog/nlog.web/pull/268) Improved ConfigureNLog for better out-of-the-box experience (@snakefoot)


### v4.5.0-aspnetcore (2018/03/27)
- [#257](https://github.com/nlog/nlog.web/pull/257) ConfigureNLog should not be used together with UseNLog (@snakefoot)
Expand Down
19 changes: 17 additions & 2 deletions NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@

<TargetFrameworks>netstandard1.5;net451;net461;netstandard2.0</TargetFrameworks>

<VersionPrefix>4.5.0</VersionPrefix>
<VersionPrefix>4.5.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Version>$(VersionPrefix)$(VersionSuffix)</Version>
<InformationalVersion>$(Version)</InformationalVersion>
<FileVersion>$(VersionPrefix).0</FileVersion>
<FileVersion Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">$(VersionPrefix).$(APPVEYOR_BUILD_NUMBER)</FileVersion>

<Product>NLog.Web.AspNetCore v$(Version)</Product>
<Description>Extend NLog with targets and layout renderers for websites and webapplications on the ASP.NET Core platform.</Description>
<Description>
Use NLog with the ASP.NET Core platform. Adds helpers and layout renderers for websites and webapplications.

Supported platforms:

- For ASP.NET Core 2, .NET Standard 2.0+ and .NET 4.6+
- For ASP.NET Core 1, .NET Standard 1.5+ and .NET 4.5.x

</Description>
<Authors>Julian Verdurmen</Authors>
<Company>NLog</Company>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
Expand All @@ -22,6 +30,13 @@
<PackageId>NLog.Web.AspNetCore</PackageId>
<PackageTags>logging;log;session;NLog;web;aspnet;aspnetcore;MVC</PackageTags>
<PackageReleaseNotes>
4.5.1: Improved ConfigureNLog for better out-of-the-box experience.

Recommend to replace `LogManager.LoadConfiguration` with `NLogBuilder.ConfigureNLog` (NLog.Web namespace) for better out-of-the-box experience




</PackageReleaseNotes>
<PackageIconUrl>http://nlog-project.org/N.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/NLog/NLog.Web</PackageProjectUrl>
Expand Down

0 comments on commit 7fe3a15

Please sign in to comment.