...
settings.validation=false
...
settings.rules.file.dottest
...
Acceptable Values
[path] | The path to file that contains additional rules for settings validation. |
---|
...
The following configuration points to the settings in the new_setting_rules.properties
file:
...
:
...
...
settings.rules.file.dottest=C:\parasoft\jtest\new_setting_rules.properties
The settings included in the file may resemble the following:
engine.path=$ANY
engine.enabled=$BOOLEAN
engine.analysis.deep=$INTEGER
engine.severity.limit=$REGEXP{[1-5]}
engine.verbosity.level=$REGEXP_IC{(low)|(normal)|(high)}
...
...
dottest
...
.build.nobuild
This setting disables/ enables build of the tested solution or projects. If enabled, the building phase is skipped during analysis.
Acceptable Values
true | The building phase will be skipped during analysis. |
---|---|
false | Default. The tested solution or project will be built. |
Example Usage
The following configuration disables building of the project/solution:
dottest.build.nobuild=true
...
dottest.build.builder_id
This setting specifies which builder will be used to build solutions and projects before they are analyzed by dotTEST
...
.
Acceptable Values
msbuild | Sets MSBuild as the builder. |
---|---|
visualstudio | Sets Visual Studio as the builder. |
Example Usage
The following configuration specifies that MSBuild will be used to build solutions and projects before the analysis.
dottest.build.builder_id=msbuild
Related
...