ユニットテストにはtypemockを使用します。ビルドを開始する方法はtypemockを使用します。typemockとmsbuildのみを使用できますか?それ以外の場合は、nunit-console.exeを使用する必要がありますか?
ユニットテストでビルドを開始すると...私のバグはどこにありますか?
<Import Project="C:\Program Files (x86)\Typemock\Isolator\7\TypeMock.MSBuild.Tasks" />
<Target Name="BeforeTest">
<TypeMockStart LogPath="C:\TypeMockLogs" LogLevel="9" Target="3.5" />
<Exec ContinueOnError="false" WorkingDirectory="$(SolutionRoot)" Command="$(NUNIT) \bin\Debug\Business.Tests.dll" />
</Target>
<Target Name="AfterTest">
<TypeMockStop Undeploy="true" />
</Target>
<PropertyGroup>
<TypeMockLocation>C:BuildIsolator</TypeMockLocation>
<NUNIT>"C:\Program Files (x86)\NUnit 2.6\bin\nunit-console.exe"</NUNIT>
<TMockRunnerPath>"C:\Program Files (x86)\Typemock\Isolator\7\TMockRunner.exe"</TMockRunnerPath>
<MSTestPath>"D:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe"</MSTestPath>
</PropertyGroup>