dotnet / dotNext

Next generation API for .NET
https://dotnet.github.io/dotNext/
MIT License
1.58k stars 118 forks source link

dependency issue on DotNext.Net.Cluster 4.12.2 #173

Closed freddyrios closed 1 year ago

freddyrios commented 1 year ago

Building with version 4.12.2 of DotNext.Net.Cluster fails with:

Severity    Code    Description Project File    Line    Suppression State
Error   CS1705  Assembly 'DotNext.Net.Cluster' with identity 'DotNext.Net.Cluster, Version=4.12.2.0, Culture=neutral, PublicKeyToken=c8827b44e18fe572' uses 'DotNext, Version=4.12.2.0, Culture=neutral, PublicKeyToken=c8827b44e18fe572' which has a higher version than referenced assembly 'DotNext' with identity 'DotNext, Version=4.12.0.0, Culture=neutral, PublicKeyToken=c8827b44e18fe572' LoopComponents  C:\Users\fredd\source\repos\CA_LoopCode\LoopComponents\CSC  1   Active

It seems that even though 4.12.2 is only released for DotNext.Net.Cluster, the build still uses the 4.12.2 for the dependencies.

sakno commented 1 year ago

Add DotNext core library of version 4.12.2 to your csproj explicitly.

sakno commented 1 year ago

To make it just works, I can publish all upgraded dependencies.

sakno commented 1 year ago

Fixed in 4.12.3.

freddyrios commented 1 year ago

great, thanks!