vote up 0 vote down star

I have a MSBuild script which looks similar to:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <Target Name="Build">

        <MSBuild Projects="MyProject.UnitTest.sln" Targets="Build" />

    </Target>
</Project>

How do I run the MSTest unit tests which are within the solution?

I am looking for something similar to what can be used in TFS Build of:

<TestContainerInOutput Include="%2a%2a\%2aTest.dll" />
flag

33% accept rate

1 Answer

vote up 0 vote down

This blog post has a few ideas that might help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.