Hi Support Team,
I have added a MSTest action to my ContinuaCI project in order to perform UnitTests.
One test always fails. The reason is, that this specific test loads a 64 bit DLL. Therefore it has to run in 64 bit mode.
How can I start 64 bit tests?
Best regards
Michael
Hi Michael,
MSTest will not run on mixed-mode assemblies and there is no command line option we can use. You can workaround this problem by setting the target platform for your main test project to x64 instead of Any CPU.
See this article for more details and other possible options.