chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
+1 vote
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>
 
 

 

asked by DotNetUser (1.1k points)

Please log in or register to answer this question.

...