我正在尝试设置一个可以运行 FsUnit 的基本 FAKE F# 项目,但我不知道如何解决这些Method not found: 'Void FsUnit.TopLevelOperators.should(Microsoft.FSharp.Core.FSharpFunc`2<!!0,!!1>, !!0, System.Object)'
错误。
我已经阅读了以下似乎相关的帖子,但我显然仍然没有理解它:
我创建了一个JunkTest
具有以下设置的库项目:
包依赖项
source https://www.nuget.org/api/v2
nuget FAKE
nuget FSharp.Core
nuget FsUnit
nuget NUnit
nuget NUnit.Console
paket.references
FSharp.Core
FsUnit
NUnit
垃圾测试文件
module JunkTest
open FsUnit
open NUnit.Framework
[<Test>]
let ``Example Test`` () =
1 |> should equal 1 // this does not work
//Assert.That(1, Is.EqualTo(1)) // this works (NUnit)
build.fsx(相关部分)
Target "Test" (fun _ ->
!! (buildDir + "JunkTest.dll")
|> NUnit3 (fun p ->
{p with OutputDir = "TestResults" }
)
)
输出
我看到 FSharp.Core.dll 正在从本地packages
目录复制: Copying file from "c:\Users\dangets\code\exercism\fsharp\dgt\packages\FSharp.Core\lib\net40\FSharp.Core.dll" to "c:\Users\dangets\code\exercism\fsharp\dgt\build\FSharp.Core.dll".
和 nunit3-console 执行: c:\Users\dangets\code\exercism\fsharp\dgt\packages\NUnit.ConsoleRunner\tools\nunit3-console.exe "--noheader" "--output=TestResults" "c:\Users\dangets\code\exercism\fsharp\dgt\build\JunkTest.dll"
我试图app.config
在测试项目根目录中添加一个文件,但它似乎没有解决问题(注意我没有使用 Visual Studio - 我需要为项目做任何特殊的事情来包含app.config
文件?):
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
任何和所有的帮助表示赞赏。
编辑:解决方案是我没有正确设置App.config
文件以包含在构建中。所有说“只需将其添加到您的App.config
文件”的答案都对我没有帮助,因为 VSCode 不会fsproj
自动将其添加到文件中。
我添加的部分是:
<None Include="App.config" />
在ItemGroup
包含其他<Compile Include=Foo.fs>
行的那个中。