We need to test a .NET application that references a .NET Wrapper DLL that references unmanaged C++ DLL.
The TFS Unit Testing project only copies the .NET Wrapper DLL and not the last one abd tests fail.
How can I tell to MSTest to copy all the necessary files?
Thanks.
The solution was to add all the necessary files/DLL to the Deployment section of the Local.testsettings file and to add the /testsettings:Local.testsettings parameter to the MSTest command line list of parameters.