Skip to content

Commit

Permalink
Update src/NServiceBus.Transport.SqlServer/SqlServerTransportInfrastr…
Browse files Browse the repository at this point in the history
…ucture.cs
  • Loading branch information
danielmarbach committed Mar 4, 2024
1 parent a2dc858 commit d0a7e51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal SqlServerTransportInfrastructure(SqlServerTransport transport, HostSett
var currentClientVersion = new Version(informationalVersion.InformationalVersion.Split('+').First());
if (currentClientVersion < new Version(5, 2, 0))
{
_logger.WarnFormat("You are using an outdated version '{0}' of Microsoft.Data.SqlClient. We recommend using version 5.2.0 or later by adding a top-level package reference to avoid known problems in older versions of the client. See https://github.com/dotnet/SqlClient/blob/main/release-notes/5.0/5.0.0.md#breaking-changes for details on breaking changes before ugprading.", currentClientVersion);
_logger.WarnFormat("You are using an outdated version '{0}' of Microsoft.Data.SqlClient. We recommend using version 5.2.0 or later by adding a top-level package reference to avoid known problems in older versions of the client. Consult the SQL client release notes https://github.com/dotnet/SqlClient/blob/main/release-notes for breaking changes before upgrading.", currentClientVersion);
}
}

Expand Down

0 comments on commit d0a7e51

Please sign in to comment.