Norgul
Norgul

Reputation: 4783

.NET core with FakeItEasy

Can FakeItEasy work with .NET core? I have installed it through NuGet but I can't reference it in the project as using FakeItEasy because it doesn't find it. I have checked under NuGet dependencies and I see it as FakeItEasy (3.3.2)

Upvotes: 4

Views: 1336

Answers (1)

Martin Ullrich
Martin Ullrich

Reputation: 100543

Yes, FakeItEasy > 3.0.0 is compatible with .NET Standard 1.6 which means it will run in .NET Core 1.0 and higher.

You may have problems restoring and using packages, try running dotnet restore from command line and closing and re-opening visual studio completely. Also check if dotnet build gives the same error message as VS.

Upvotes: 8

Related Questions