After seeing a document from Gaspar Nagy talking about FluentAssertions, we decide to use it on our test solutions.
It works fine when working on C# project using Nugets.
But I'm trying to use it in a new solution that i must upgrade to make it use Gerkhin.
Execute.Assertion.FailWith(messageToDisplay, args);
I always see on my log file:
[ERROR] No platform-specific assembly detected
On my csproj, i have the following linge:
<Reference Include="FluentAssertions, Version=4.19.2.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
<HintPath>..\packages\FluentAssertions.4.19.2\lib\net45\FluentAssertions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="FluentAssertions.Core, Version=4.19.2.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
<HintPath>..\packages\FluentAssertions.4.19.2\lib\net45\FluentAssertions.Core.dll</HintPath>
<Private>True</Private>
</Reference>
As it is in the previous project...
I dont know where the error is coming from and what I should add to make it work fine.
Can someone can help me? :(
Thanks