|
2 | 2 | // Licensed under the MIT License. See the LICENSE. |
3 | 3 |
|
4 | 4 | // System |
| 5 | +global using global::System; |
| 6 | +global using global::System.Collections; |
| 7 | +global using global::System.Collections.Generic; |
| 8 | +global using global::System.Collections.ObjectModel; |
| 9 | +global using global::System.ComponentModel; |
| 10 | +global using global::System.Diagnostics; |
| 11 | +global using global::System.Linq; |
| 12 | +global using global::System.Text.Json; |
| 13 | +global using global::System.Text.Json.Serialization; |
| 14 | +global using global::System.Threading; |
| 15 | +global using global::System.Threading.Tasks; |
| 16 | +global using SystemIO = global::System.IO; |
| 17 | + |
5 | 18 | // CommunityToolkit.Mvvm |
6 | 19 | global using global::CommunityToolkit.Mvvm.ComponentModel; |
7 | 20 | global using global::CommunityToolkit.Mvvm.DependencyInjection; |
8 | 21 | global using global::CommunityToolkit.Mvvm.Input; |
9 | 22 | global using global::CommunityToolkit.Mvvm.Messaging; |
| 23 | + |
| 24 | +// Files.App |
| 25 | +global using global::Files.App.Helpers; |
| 26 | +global using global::Files.App.Services; |
| 27 | +global using global::Files.App.Services.DateTimeFormatter; |
| 28 | +global using global::Files.App.Services.PreviewPopupProviders; |
| 29 | +global using global::Files.App.Services.Settings; |
10 | 30 | global using global::Files.App.Data.Commands; |
11 | 31 | global using global::Files.App.Data.Contexts; |
12 | 32 | global using global::Files.App.Data.Contracts; |
|
19 | 39 | global using global::Files.App.Data.Models; |
20 | 40 | global using global::Files.App.Data.Parameters; |
21 | 41 | global using global::Files.App.Extensions; |
22 | | -// Files.App |
23 | | -global using global::Files.App.Helpers; |
24 | | -global using global::Files.App.Services; |
25 | | -global using global::Files.App.Services.DateTimeFormatter; |
26 | | -global using global::Files.App.Services.PreviewPopupProviders; |
27 | | -global using global::Files.App.Services.Settings; |
28 | | -// Files.App.Storage |
29 | | - |
30 | | -global using global::Files.App.Storage.Storables; |
31 | | -global using global::Files.App.Storage.Watchers; |
32 | 42 | global using global::Files.App.UserControls; |
33 | 43 | global using global::Files.App.UserControls.TabBar; |
34 | 44 | global using global::Files.App.UserControls.Widgets; |
|
53 | 63 | global using global::Files.App.Views; |
54 | 64 | global using global::Files.App.Views.Layouts; |
55 | 65 | global using global::Files.App.Views.Shells; |
| 66 | + |
| 67 | +// Files.App.Storage |
| 68 | +global using global::Files.App.Storage.Storables; |
| 69 | +global using global::Files.App.Storage.Watchers; |
| 70 | + |
56 | 71 | // Files.Core.Storage |
57 | 72 |
|
58 | 73 | global using global::Files.Core.Storage; |
59 | 74 | global using global::Files.Core.Storage.Enums; |
60 | 75 | global using global::Files.Core.Storage.EventArguments; |
61 | 76 | global using global::Files.Core.Storage.Extensions; |
62 | 77 | global using global::Files.Core.Storage.Storables; |
| 78 | + |
63 | 79 | // Files.Shared |
64 | 80 | global using global::Files.Shared; |
65 | 81 | global using global::Files.Shared.Attributes; |
66 | 82 | global using global::Files.Shared.Extensions; |
67 | | -global using global::System; |
68 | | -global using global::System.Collections; |
69 | | -global using global::System.Collections.Generic; |
70 | | -global using global::System.Collections.ObjectModel; |
71 | | -global using global::System.ComponentModel; |
72 | | -global using global::System.Diagnostics; |
73 | | -global using global::System.Linq; |
74 | | -global using global::System.Text.Json; |
75 | | -global using global::System.Text.Json.Serialization; |
76 | | -global using global::System.Threading; |
77 | | -global using global::System.Threading.Tasks; |
78 | | -global using SystemIO = global::System.IO; |
|
0 commit comments