Skip to content

Commit

Permalink
Updated packages. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgernand authored Apr 18, 2024
1 parent c1d64ed commit 8646e72
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NHibernate Logging Providers

The current version **5.5.0** is available as [NuGet package](http://nuget.org/packages/NHibernate.Logging/).
This version is built against NHibernate 5.4.6 and Common.Logging 3.4.1.
The current version **5.5.1** is available as [NuGet package](http://nuget.org/packages/NHibernate.Logging/).
This version is built against NHibernate 5.5.1 and Common.Logging 3.4.1.

NHibernate Logging Providers makes it possible to use your favourite logger with NHibernate.
You no longer have to use log4net. The new NHibernate (since NH3) logging abstraction makes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
Expand All @@ -11,9 +11,6 @@
<PropertyGroup>
<IncludeSymbols>false</IncludeSymbols>
<Copyright>Copyright © 2013-2024 Matthias Gernand. All rights reserved.</Copyright>
<Version>5.5.0</Version>
<AssemblyVersion>5.5.0</AssemblyVersion>
<FileVersion>5.5.0</FileVersion>
<Authors>Matthias Gernand</Authors>
<Description>Common.Logging logging provider for NHibernate.</Description>
<NeutralLanguage>en</NeutralLanguage>
Expand All @@ -27,6 +24,14 @@
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>5.5.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<FileVersion>$(VersionPrefix)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<InformationalVersion>$(Version)</InformationalVersion>
</PropertyGroup>

<ItemGroup>
<Content Include="App.config.transform">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand All @@ -46,7 +51,7 @@

<ItemGroup>
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="NHibernate" Version="5.5.0" />
<PackageReference Include="NHibernate" Version="5.5.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 8646e72

Please sign in to comment.