Skip to content

Commit

Permalink
Merge pull request unoplatform#9985 from unoplatform/dev/mazi/duplica…
Browse files Browse the repository at this point in the history
…te-usings

chore: Avoid duplicate usings for WinUI build
  • Loading branch information
MartinZikmund authored Sep 27, 2022
2 parents ad1ce19 + c932038 commit f2e1583
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
#nullable enable

using System.Collections.ObjectModel;
using Microsoft.UI.Xaml.Automation.Peers;
using Uno.Disposables;
using Uno.UI.Helpers.WinUI;
using Windows.Devices.Input;
using Windows.System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Automation;
using Microsoft.UI.Xaml.Automation.Peers;
#if !HAS_UNO_WINUI // Avoid duplicate using for WinUI build
using Windows.UI.Xaml.Automation.Peers;
#endif
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Input;
Expand Down
4 changes: 3 additions & 1 deletion src/Uno.UI/Microsoft/UI/Xaml/Controls/PipsPager/PipsPager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@

using System;
using System.Collections.ObjectModel;
using Microsoft.UI.Xaml.Automation.Peers;
using Uno.Disposables;
using Uno.UI.Helpers.WinUI;
using Windows.Foundation;
using Windows.System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Automation;
using Microsoft.UI.Xaml.Automation.Peers;
#if !HAS_UNO_WINUI // Avoid duplicate using for WinUI build
using Windows.UI.Xaml.Automation.Peers;
#endif
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Input;
Expand Down

0 comments on commit f2e1583

Please sign in to comment.