Skip to content

Commit

Permalink
Fixed compilation conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlodotexe committed Dec 5, 2024
1 parent 471c161 commit 9657827
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#if WINDOWS_UWP || HAS_UNO
using DependencyProperty = Windows.UI.Xaml.DependencyProperty;
#else
#if WINAPPSDK
using DependencyProperty = Microsoft.UI.Xaml.DependencyProperty;
#else
using DependencyProperty = Windows.UI.Xaml.DependencyProperty;
#endif

namespace CommunityToolkit.WinUI;
Expand Down

0 comments on commit 9657827

Please sign in to comment.