Skip to content

Commit 898f882

Browse files
committed
update docs
1 parent 647936b commit 898f882

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To enable the source code generators you have to change the project file.
1818

1919
## AutoNotifyGenerator
2020

21-
Auto implemenation for [`INotifyPropertyChanged`](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged). You only have to specify the field and mark the field with
21+
Auto implementation for [`INotifyPropertyChanged`](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.inotifypropertychanged). You only have to specify the field and mark the field with
2222
the attribute and generator will automatically generate the property and raise the event.
2323

2424
```csharp
@@ -82,10 +82,17 @@ Hook up the generator, nothing else to do.
8282

8383
This generator shall generate enumerations based on the definition of the xml-based
8484
FIX application dictionary. Usually used for QuickFix.
85-
The fields in the xml will be converted to an enum field and tag number. Additional enums
85+
The fields in the xml will be converted to an enum field and tag number.
86+
The name is base on the file name, e. g. `TT-FIX42.xml` becomes the enum `TTFIX42Tag`.
87+
88+
![sample of generated Tag enum](resources/tag-sample.png)
89+
90+
Additional enums
8691
will be generated for the fix field enums. Because the value can be char instead of int, the
8792
enum value is the char code.
8893

94+
![Sample of a generate FIX enum values](resources/enum-sample.png)
95+
8996
### Usage
9097

9198
Reference the code generator as usual. The add the xml files you like to be converted.

Diff for: resources/enum-sample.png

10.2 KB
Loading

Diff for: resources/tag-sample.png

14 KB
Loading

0 commit comments

Comments
 (0)