Unable to find testhost.dll. Please publish your test project and retry

前端 未结 19 1417
星月不相逢
星月不相逢 2021-02-01 11:40

I have a simple dotnet core class library with a single XUnit test method:

TestLib.csproj:


  
            


        
19条回答
  •  滥情空心
    2021-02-01 12:24

    Ran into this error, the root cause was the tests were hitting the maximum length for a Windows path (MAX_PATH), which is defined as 260 characters.

提交回复
热议问题