Prevent MSTest from copying / deploying every dll

后端 未结 2 855
逝去的感伤
逝去的感伤 2021-02-08 06:07

When running MSTest from Visual Studio - the unit test execution time is relatively quick.

When running MSTest from the command line, with /testsettings flag - the exec

2条回答
  •  清酒与你
    2021-02-08 06:30

    Have you tried disabling deployment in the test settings? When it is disabled, the tests should be run in-place rather than on copied assemblies. (See http://msdn.microsoft.com/en-us/library/ms182475.aspx for details.)

提交回复
热议问题