We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05cf26 commit 94f3375Copy full SHA for 94f3375
2 files changed
SimpleViewModel/SimpleViewModel.csproj
@@ -9,7 +9,7 @@
9
10
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
11
<PackageId>SimpleViewModel</PackageId>
12
- <Version>0.9.7.2</Version>
+ <Version>0.9.7.3</Version>
13
<Authors>Derek Gooding</Authors>
14
<Company>Derek Gooding</Company>
15
<Description>
ViewModelGenerator/ViewModelGenerator.cs
@@ -130,7 +130,7 @@ public override void Execute(object? parameter)
130
commandBuilder.AppendLine($" vm.{method.Name}();");
131
}
132
133
- commandBuilder.AppendLine(" }");
+ //commandBuilder.AppendLine(" }");
134
var canExecute = GetCanExecuteMethodName(method);
135
if (!string.IsNullOrWhiteSpace(canExecute))
136
commandBuilder.AppendLine($" public override bool CanExecute(object? parameter) => vm.{canExecute}();");
0 commit comments