我创建了ASP.NET我们的应用程序项目,然后创建了一个测试类-该类是.NET核心的一部分。
我需要通过控制台运行测试,但不能使用.net core。因为必须使用MSBuild编译应用程序等,所以我一直在做一些有关如何在MSBuild任务中运行xUnit测试的研究。
我找到了这个https://xunit.github.io/docs/running-tests-in-msbuild#options。
因此我安装了xunit.runner.msbuild.net452.dll
,但无法运行测试。
error : System.InvalidOperationException: Unknown test framework: could not find xunit.dll (v1) or xunit.execution.*.dll .....
.NET框架是否与xUnit兼容?