How to emulate the behavior of Visual Studio 2010 when running MsTest tests?

When you run MsTest tests using Visual Studio 2008 or the command line with the default settings, the binaries are copied to the Out folder. The same thing does not happen when you start it using Visual Studio 2010. What are the command line options that allow me to achieve the same result as VS2010?

+4
source share
1 answer

Open the ".testsettings" items in the solution items. (Add one if necessary.) Edit it, select Deployment, then select the Enable Deployment check box. Save the SLN.

+2
source

Source: https://habr.com/ru/post/1334690/


All Articles