Skip to content
Snippets Groups Projects
Commit 9798e708 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add README for ATxConfigTest.

parent 96bdfcf9
No related branches found
No related tags found
No related merge requests found
# AutoTx Configuration Validator
The `AutoTxConfigTest` tool can be used to validate a set of configuration files
and print a summary to the console.
## Basic Usage
By default, configuration files are expected to be in the same directory as the
`AutoTxConfigTest` executable. In that case simply run the tool like this:
```
.\AutoTxConfigTest.exe
```
## Advanced Usage
Instead of checking the config files in the directory of the executable, any
other path can be specified as the first parameter when running the
configuration validator, e.g.
```
.\AutoTxConfigTest.exe C:\Temp\new-config\
```
This also works with UNC paths, like
```
.\AutoTxConfigTest.exe \\some.file.server\share\new-config\
```
To increase the log level of the parser, a second parameter can be specified as
either `debug` or `trace`:
```
.\AutoTxConfigTest.exe C:\Temp\new-config\ trace
.\AutoTxConfigTest.exe . debug
```
## Exit Codes
A valid configuration will result in exit code `0`, an invalid in `-1`.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment