File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed
Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ A lightweight WPF ViewModel framework with automatic source generation that elim
1616### Installation
1717
1818``` xml
19- <PackageReference Include =" SimpleViewModel" Version =" 0.9.3 " />
19+ <PackageReference Include =" SimpleViewModel" Version =" 0.9.4 " />
2020```
2121
2222### Basic Usage
Original file line number Diff line number Diff line change 99
1010 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
1111 <PackageId >SimpleViewModel</PackageId >
12- <Version >0.9.3 </Version >
12+ <Version >0.9.4 </Version >
1313 <Authors >Derek Gooding</Authors >
1414 <Company >Derek Gooding</Company >
1515 <Description >
Original file line number Diff line number Diff line change @@ -61,15 +61,8 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
6161namespace { namespaceName }
6262{{
6363 public partial class { className } : BaseViewModel
64- {{" ) ;
65-
66- foreach ( var field in bindFields )
67- {
68- viewModelBuilder . AppendLine ( $ " public { field . Type } { ToPascal ( field . Name ) } {{ get; set; }}") ;
69- }
70-
71- viewModelBuilder . AppendLine ( ) ;
72-
64+ {{
65+ " ) ;
7366 foreach ( var field in bindFields )
7467 {
7568 var fieldType = field . Type . ToDisplayString ( ) ;
You can’t perform that action at this time.
0 commit comments