Skip to content

Commit 0c5192e

Browse files
committed
Update dependencies
1 parent af4b899 commit 0c5192e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

WpfApp/Domain/CommandGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ void OnChildCommandCanExecuteChanged(object? sender, EventArgs e)
5959
// it will be observed by WPF.
6060
OnCanExecuteChanged();
6161
}
62+
6263
public bool CanExecute(object? parameter)
6364
{
6465
foreach (CommandReference cmd in Commands)
@@ -73,7 +74,6 @@ public bool CanExecute(object? parameter)
7374
}
7475

7576
public event EventHandler? CanExecuteChanged;
76-
7777
protected virtual void OnCanExecuteChanged()
7878
{
7979
CanExecuteChanged?.Invoke(this, EventArgs.Empty);

WpfApp/WpfApp.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<UseWPF>true</UseWPF>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>Leosac.$(AssemblyName)</PackageId>
9-
<Version>1.24.0</Version>
9+
<Version>1.25.0</Version>
1010
<Product>Leosac WpfApp Library</Product>
1111
<Description>C# Library components/helpers for Leosac branded Wpf applications .</Description>
1212
<Company>Leosac SAS</Company>
@@ -31,8 +31,8 @@
3131

3232
<ItemGroup>
3333
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
34-
<PackageReference Include="Leosac.SharedServices" Version="1.10.0" />
35-
<PackageReference Include="log4net" Version="3.0.4" />
34+
<PackageReference Include="Leosac.SharedServices" Version="1.11.0" />
35+
<PackageReference Include="log4net" Version="3.1.0" />
3636
<PackageReference Include="MaterialDesignThemes" Version="5.2.1" />
3737
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
3838
</ItemGroup>

0 commit comments

Comments
 (0)