Skip to content

Commit 9657827

Browse files
committed
Fixed compilation conditionals
1 parent 471c161 commit 9657827

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/DependencyPropertyGenerator/src/GeneratedDependencyProperty.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
#if WINDOWS_UWP || HAS_UNO
6-
using DependencyProperty = Windows.UI.Xaml.DependencyProperty;
7-
#else
5+
#if WINAPPSDK
86
using DependencyProperty = Microsoft.UI.Xaml.DependencyProperty;
7+
#else
8+
using DependencyProperty = Windows.UI.Xaml.DependencyProperty;
99
#endif
1010

1111
namespace CommunityToolkit.WinUI;

0 commit comments

Comments
 (0)