Skip to content

Commit 9a1dc0f

Browse files
Update Readme.md
1 parent 8097050 commit 9a1dc0f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Readme.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# View Model Code Generator
22

3-
The DevExpress MVVM Framework includes a [source generator](https://github.com/dotnet/roslyn/blob/main/docs/features/source-generators.md) that produces boilerplate code for your View Models at compile time. You need to define a stub View Model class that defines the required logic. Our MVVM Framework analyzes your implementation and applied attributes to generate the final View Model class with all required boilerplate code.
3+
The DevExpress MVVM Framework includes a [source generator](https://github.com/dotnet/roslyn/blob/main/docs/features/source-generators.md) that produces boilerplate code for your View Models at compile time. You need to define a stub View Model class that specifies the required logic. Our MVVM Framework analyzes your implementation and applied attributes to generate the final View Model class with all required boilerplate code.
44

55

66

@@ -106,25 +106,27 @@ Prepare your project as outlined below to enable support for View Models generat
106106

107107
## Documentation
108108

109-
Refer to the following topic for more information:
110109
* [View Models Generated at Compile Time](https://docs.devexpress.com/WPF/402989/mvvm-framework/viewmodels/compile-time-generated-viewmodels)
111110
112111
## Example
113-
114-
Refer to the following GitHub example:
112+
115113
* [How to: Use View Models Generated at Compile Time](https://github.com/DevExpress-Examples/ViewModelGenerator-Sample)
116114
117115
## Release Notes
118116

119117
### 21.1.3
120-
We fixed the [Sealed class generates protected method](https://github.com/DevExpress/DevExpress.Mvvm.CodeGenerators/issues/8) GitHub issue. If you use now a sealed class, the following members of the generated View Model class have a **private** access modifier:
118+
119+
We fixed the following issue: [A sealed class generates protected methods](https://github.com/DevExpress/DevExpress.Mvvm.CodeGenerators/issues/8).
120+
121+
If you use a sealed class, the following members of the generated View Model class will have the **private** access modifier:
121122
- RaisePropertyChanged methods
122123
- RaisePropertyChanging methods
123124
- ServiceContainers
124125
- GetService methods
125126
- GetRequiredService methods
126127

127128
### 21.1.2
129+
128130
- You can now use the View Model Code Generator in WinUI projects.
129131
- You can add XML comments to a field and a method. The generated property or command now copies these comments.
130132
- We minimized memory allocations and improved the performance.

0 commit comments

Comments
 (0)