MAIN: fix this

This commit is contained in:
Mike Griese
2025-07-16 09:33:41 -05:00
parent 74efb00f40
commit b79cf60d94

View File

@@ -2,11 +2,12 @@
// The Microsoft Corporation licenses this file to you under the MIT license. // The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. // See the LICENSE file in the project root for more information.
using Microsoft.CmdPal.Core.ViewModels; using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.CommandPalette.Extensions; using Microsoft.CommandPalette.Extensions;
namespace Microsoft.CmdPal.Core.ViewModels; namespace Microsoft.CmdPal.Core.ViewModels;
public partial class SeparatorContextItemViewModel() : IContextItemViewModel, ISeparatorContextItem // DANGER: Make sure that this is derived from a WinRT class. If not, it'll fail with AOT at runtime, in any bindings.
public partial class SeparatorContextItemViewModel() : ObservableObject, IContextItemViewModel, ISeparatorContextItem
{ {
} }