File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
DevExpress.Mvvm.CodeGenerators/InitializationGenerator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static class AttributesGenerator {
22
22
public static string GetSourceCode ( bool isWinUI ) => isWinUI ? winUISourceCode : commonSourceCode ;
23
23
24
24
const string commonSourceCode = @" /// <summary>
25
- /// Applies to a class. Indicates that the source generator should process this class and produce View Model boilerplate code .
25
+ /// Indicates that the View Model Code Generator should process this class and produce a View Model.
26
26
/// </summary>
27
27
[AttributeUsage(AttributeTargets.Class)]
28
28
class GenerateViewModelAttribute : Attribute {
@@ -54,7 +54,7 @@ class GenerateViewModelAttribute : Attribute {
54
54
}
55
55
56
56
/// <summary>
57
- /// Applies to a field. The source generator produces boilerplate code for the property getter and setter based on the field declaration .
57
+ /// Indicates that the View Model Code Generator should process this field and produce a property .
58
58
/// </summary>
59
59
[AttributeUsage(AttributeTargets.Field)]
60
60
class GeneratePropertyAttribute : Attribute {
@@ -80,7 +80,7 @@ class GeneratePropertyAttribute : Attribute {
80
80
}
81
81
82
82
/// <summary>
83
- /// Applies to a method. The source generator produces boilerplate code for a Command based on this method .
83
+ /// Indicates that the View Model Code Generator should process this method and produce a Command .
84
84
/// </summary>
85
85
[AttributeUsage(AttributeTargets.Method)]
86
86
class GenerateCommandAttribute : Attribute {
You can’t perform that action at this time.
0 commit comments