You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MvvmGen/MvvmGen.csproj
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,11 @@
19
19
<Language>en-US</Language>
20
20
<PackageIcon>packageIcon.png</PackageIcon>
21
21
<PackageReadmeFile>readme.md</PackageReadmeFile>
22
-
<PackageReleaseNotes>Version 1.3.0:
22
+
<PackageReleaseNotes>Version 1.4.0:
23
+
- Support partial properties in ViewModels (https://github.com/thomasclaudiushuber/mvvmgen/issues/105)
24
+
- Generated ViewModel interface now extends INotifyPropertyChanged (https://github.com/thomasclaudiushuber/mvvmgen/issues/105)
25
+
26
+
Version 1.3.0:
23
27
- New CommandType property on [ViewModel] attribute to specify a custom IDelegateCommand implementation.
24
28
- New ModelPropertyName property on [ViewModel] attribute to set the name of the property that contains the wrapped model specified via the ModelType property.
25
29
- New ModelPropertiesToIgnore property on [ViewModel] attribute to set a comma-separated list of model properties that should not be generated for the model specified via the ModelType property.
@@ -38,7 +42,7 @@ Version 1.2.0:
38
42
- The model used by the source generator implements Equals to support caching between generation steps. This makes the generator more performant, which is especially noticable in larger solutions.
39
43
- Bug fix for [ViewModelGenerateFactory] attribute. When injecting an IEventAggregator into the ViewModel, the factory now also has the correct constructor parameters.
0 commit comments