Skip to content

Commit 94f3375

Browse files
committed
removed erronous } in source gen
1 parent c05cf26 commit 94f3375

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SimpleViewModel/SimpleViewModel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<PackageId>SimpleViewModel</PackageId>
12-
<Version>0.9.7.2</Version>
12+
<Version>0.9.7.3</Version>
1313
<Authors>Derek Gooding</Authors>
1414
<Company>Derek Gooding</Company>
1515
<Description>

ViewModelGenerator/ViewModelGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public override void Execute(object? parameter)
130130
commandBuilder.AppendLine($" vm.{method.Name}();");
131131
}
132132

133-
commandBuilder.AppendLine(" }");
133+
//commandBuilder.AppendLine(" }");
134134
var canExecute = GetCanExecuteMethodName(method);
135135
if (!string.IsNullOrWhiteSpace(canExecute))
136136
commandBuilder.AppendLine($" public override bool CanExecute(object? parameter) => vm.{canExecute}();");

0 commit comments

Comments
 (0)