How do you avoid Assertion Dialog when running unit tests via MSTEST?
Hi,
I'm using MSBuild to kick off some tests using MSTest.
The problem I have is that the tests are running against debug builds and in some cases assertion dialogs are appearing, which is obviously not ideal for CI. When I was using NUnit I could suppress the dialog using a .config file for the nunit project in the following manner:
<configuration>
<system.diagnostics>
<assert assertuienabled="false" />
</system.diagnostics>
</configuration>
How can I do this using MSBuild/MSTest?
thanks in advance,
John.
BTW: I originally posted this in the MSBuild forum and was referred here.

