Hi
I'm getting a
"Profiler: NCover is not recognized or not installed on your machine There are no recognized profilers" error message when running the build on our WS 2003 Build Server.
I am trying to use the AutoDeploy feature and have thus not installed NCover or TypeMock on the build server. If I understand your documentation correctly, I should be able to get this working without physically installing the tools. What I am doing wrong? Here are the MSBuild scripts I am using:
<TypeMockRegister Company="Sanlam" License="xxxxxxxxxxx" AutoDeploy="true"/>
<TypeMockStart Target="2.0"
Link="NCover"
ProfilerLaunchedFirst="true" />
<NCover
ToolPath="$(NCoverPath)"
CommandLineExe="$(NUnitCmd)"
CommandLineArgs="$(DOUBLE_QUOTES)%(TestAssemblies.FullPath)$(DOUBLE_QUOTES) /nologo"
CoverageFile="%(TestAssemblies.FullPath).$(NCoverFile)"
LogLevel="Normal"
LogFile="%(TestAssemblies.FullPath).$(NCoverLogFile)"
WorkingDirectory="%(TestAssemblies.RootDir)%(TestAssemblies.Directory)"
ExcludeAttributes=""
Assemblies="@(CodeAssemblies)"
RegisterProfiler="false"
ContinueOnError="true"/>
<TypeMockStop Undeploy="true"/>
Thanking you in advance