我有一个 MSTest 项目在执行时运行良好:
dotnet test --logger "trx;LogFileName=Result.trx" --settings tests.runsettings
我还可以用它构建一个独立的应用程序:
dotnet publish -c Release -f netcoreapp2.1 --force --self-contained --runtime win-x64
但我不知道如何从生成的输出中运行测试。
打电话
dotnet test .\ProjectName.dll --logger "trx;LogFileName=Result.trx" --settings tests.runsettings
失败并显示以下消息:
error MSB4025: The project file could not be loaded.
关于如何运行这个独立的 MSTest-Project 的任何提示?