in fxcop-server/src/jetbrains/buildServer/fxcop/server/FxCopRunType.java [22:31]
public FxCopRunType(final RunTypeRegistry runTypeRegistry, final PluginDescriptor pluginDescriptor) {
myPluginDescriptor = pluginDescriptor;
runTypeRegistry.registerRunType(this);
myDefaultParameters = new HashMap<>();
myDefaultParameters.put(FxCopConstants.SETTINGS_DETECTION_MODE, FxCopConstants.DETECTION_MODE_AUTO);
myDefaultParameters.put(FxCopConstants.SETTINGS_FXCOP_VERSION, FxCopVersion.not_specified.getTechnicalVersionPrefix());
myDefaultParameters.put(FxCopConstants.SETTINGS_WHAT_TO_INSPECT, FxCopConstants.WHAT_TO_INSPECT_FILES);
myDefaultParameters.put(FxCopConstants.SETTINGS_SEARCH_IN_GAC, "true");
myDefaultParameters.put(FxCopConstants.SETTINGS_FAIL_ON_ANALYSIS_ERROR, "true");
}