diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index af15818b31..2e09b896c2 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -41,8 +41,8 @@ - - + + @@ -53,7 +53,7 @@ - + diff --git a/src/Uno.Extensions.Maui.WinUI.Markup/MauiHostMarkupExtensions.cs b/src/Uno.Extensions.Maui.WinUI.Markup/MauiHostMarkupExtensions.cs index 9a7683690e..411f5ed520 100644 --- a/src/Uno.Extensions.Maui.WinUI.Markup/MauiHostMarkupExtensions.cs +++ b/src/Uno.Extensions.Maui.WinUI.Markup/MauiHostMarkupExtensions.cs @@ -31,9 +31,9 @@ public static MauiHost Source(this MauiHost host, Action(this MauiHost host, Func propertyBinding, [CallerArgumentExpression("propertyBinding")]string? propertyBindingExpression = null) => - host.Source(x => x.Bind(propertyBinding, propertyBindingExpression)); + host.Source(x => x.Binding(propertyBinding, propertyBindingExpression)); [MarkupExtension] public static MauiHost Source(this MauiHost host, Func propertyBinding, Func convertDelegate, [CallerArgumentExpression("propertyBinding")] string? propertyBindingExpression = null) => - host.Source(x => x.Bind(propertyBinding, propertyBindingExpression).Convert(convertDelegate)); + host.Source(x => x.Binding(propertyBinding, propertyBindingExpression).Convert(convertDelegate)); }