Closed mlaily closed 3 years ago
Hi @mlaily
Two things are going on here:
In #43 we fixed an inconsistency where the nuget package said FluentAssertions.Json depends on FluentAssertions 5.0.0, while FluentAssertions.Json.dll actually depended on FluentAssertions.dll 5.10.2 This fix has not yet been released.
As FluentAssertions' AssemblyVersion
follows its Version
, FluentAssertions.Json will require binding redirects for package.config style csproj to load a newer version of Fluent Assertions.
Basically, we can't use the latest FluentAssertions version or FluentAssertions.Json crashes:
It might be possible to work around this with binding redirects, but it was easier to downgrade FluentAssertions to 5.10.2.0.
(I created this issue primarily so others would not waste as much time as me on this :) )