in fxcop-agent/src/jetbrains/buildServer/fxcop/agent/FxCopBuildServiceFactory.java [32:38]
public boolean canRun(@NotNull final BuildAgentConfiguration agentConfiguration) {
if (!agentConfiguration.getSystemInfo().isWindows()) {
LOG.debug(getType() + " runner is supported only under Windows platform");
return false;
}
return true;
}