in fxcop-agent/src/jetbrains/buildServer/fxcop/agent/FxCopAgentConfigSearch.java [21:28]
public Collection<File> getHintPaths(@NotNull final BuildAgentConfiguration config, @Nullable AgentParametersSupplier dotNetParametersSupplier) {
final String fxCopRoot = config.getBuildParameters().getAllParameters().get(FxCopConstants.FXCOP_ROOT_PROPERTY);
if (StringUtil.isEmpty(fxCopRoot)) {
return Collections.emptyList();
}
return Collections.singleton(new File(fxCopRoot, FxCopConstants.FXCOPCMD_BINARY));
}