Fixed RabbitMQ.Client reference to 6.5

Removed obsolete dependency on System.Configuration.ConfigurationManager
This commit is contained in:
Mark van Renswoude 2023-03-31 08:01:26 +02:00
parent 0919bfee50
commit 0c2bbf396c
2 changed files with 2 additions and 3 deletions

View File

@ -820,7 +820,7 @@ namespace Tapeti.Connection
} }
finally finally
{ {
capturedConnection?.Dispose(); capturedConnection.Dispose();
} }
} }

View File

@ -25,8 +25,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.*" /> <PackageReference Include="Newtonsoft.Json" Version="13.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.5" /> <PackageReference Include="RabbitMQ.Client" Version="[6.5]" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> <ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">