I have Typemock installed on the server and getting below error -
The "TypeMockStart" task could not be instantiated from "C:Program Files (x86)TypemockIsolator8.6BuildScriptsMSBuildTypeMock.MSBuild.dll".
System.IO.FileNotFoundException: Could not load file or assembly 'TypeMock.CLI.Common, Version=8.6.0.18, Culture=neutral, PublicKeyToken=3dae460033b8d8e2' or one of its dependencies. The system cannot find the file specified.
File name: 'TypeMock.CLI.Common, Version=8.6.0.18, Culture=neutral, PublicKeyToken=3dae460033b8d8e2'
at TypeMock.MSBuild.TypeMockStart..ctor()
This is what I have in TFSBuild.proj file :
<Import Project="C:Program Files (x86)TypemockIsolator8.6BuildScriptsMSBuildTypeMock.MSBuild.Tasks" />
<Target Name="BeforeTestConfiguration">
<TypeMockStart />
</Target>
<Target Name="AfterTest">
<!--Quit TypeMock-->
<TypeMockStop/>
</Target>