I have a project written in F# 4.1
which uses Nunit 3.6.1
. I use VisualStudio 2017
to build a projects and NUnit Console Runner 3.6.1
to run tests. But when i try to run my tests a receve an error:
C:\projects\AzureLogsDownloader\packages\NUnit.ConsoleRunner.3.6.1\tools>nunit3-console.exe "C:\projects\AzureLogsDownloader\AzureLogs.Core.Tests\bin\Debug\AzureLogs.Core.Tests.dll"
Could not load file or assembly 'FSharp.Core, Version=4.4.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.(HRSULT: 0x80131040)
I tried to copy FSharp.Core
to test runner's folder, but it doesn't help.
How fix this issue and to run my tests?