|
2 | 2 | // Licensed under the MIT 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.Linq; |
| 10 | +global using global::System.Threading; |
| 11 | +global using global::System.Threading.Tasks; |
| 12 | +global using global::System.ComponentModel; |
| 13 | +global using global::System.Diagnostics; |
| 14 | +global using global::System.Text.Json; |
| 15 | +global using global::System.Text.Json.Serialization; |
| 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; |
10 | | -global using global::Files.App.Data.Commands; |
11 | | -global using global::Files.App.Data.Contexts; |
12 | | -global using global::Files.App.Data.Contracts; |
13 | | -global using global::Files.App.Data.Enums; |
14 | | -global using global::Files.App.Data.EventArguments; |
15 | | -global using global::Files.App.Data.Factories; |
16 | | -global using global::Files.App.Data.Items; |
17 | | -global using global::Files.App.Data.Messages; |
18 | | -global using global::Files.App.Data.Models; |
19 | | -global using global::Files.App.Data.Parameters; |
20 | | -global using global::Files.App.Extensions; |
| 23 | + |
21 | 24 | // Files.App |
22 | 25 | global using global::Files.App.Helpers; |
23 | | -global using global::Files.App.Services; |
24 | | -global using global::Files.App.Services.DateTimeFormatter; |
25 | | -global using global::Files.App.Services.PreviewPopupProviders; |
26 | | -global using global::Files.App.Services.Settings; |
27 | | -// Files.App.Storage |
28 | | - |
29 | | -global using global::Files.App.Storage; |
30 | | -global using global::Files.App.Storage.Storables; |
31 | | -global using global::Files.App.Storage.Watchers; |
32 | | -global using global::Files.App.UserControls; |
33 | | -global using global::Files.App.UserControls.TabBar; |
34 | | -global using global::Files.App.UserControls.Widgets; |
| 26 | +global using global::Files.App.Extensions; |
35 | 27 | global using global::Files.App.Utils; |
36 | 28 | global using global::Files.App.Utils.Cloud; |
37 | | -global using global::Files.App.Utils.CommandLine; |
38 | 29 | global using global::Files.App.Utils.FileTags; |
39 | 30 | global using global::Files.App.Utils.Git; |
40 | 31 | global using global::Files.App.Utils.Library; |
|
43 | 34 | global using global::Files.App.Utils.StatusCenter; |
44 | 35 | global using global::Files.App.Utils.Storage; |
45 | 36 | global using global::Files.App.Utils.Taskbar; |
| 37 | +global using global::Files.App.Data.Behaviors; |
| 38 | +global using global::Files.App.Data.Commands; |
| 39 | +global using global::Files.App.Data.Contexts; |
| 40 | +global using global::Files.App.Data.Contracts; |
| 41 | +global using global::Files.App.Data.EventArguments; |
| 42 | +global using global::Files.App.Data.Factories; |
| 43 | +global using global::Files.App.Data.Items; |
| 44 | +global using global::Files.App.Data.Models; |
| 45 | +global using global::Files.App.Data.Parameters; |
| 46 | +global using global::Files.App.Data.TemplateSelectors; |
| 47 | +global using global::Files.App.Services; |
| 48 | +global using global::Files.App.UserControls; |
| 49 | +global using global::Files.App.UserControls.TabBar; |
| 50 | +global using global::Files.App.UserControls.Widgets; |
46 | 51 | global using global::Files.App.ViewModels; |
47 | | -global using global::Files.App.ViewModels.Dialogs; |
48 | | -global using global::Files.App.ViewModels.Dialogs.AddItemDialog; |
49 | | -global using global::Files.App.ViewModels.Dialogs.FileSystemDialog; |
50 | 52 | global using global::Files.App.ViewModels.UserControls; |
51 | 53 | global using global::Files.App.ViewModels.UserControls.Widgets; |
52 | 54 | global using global::Files.App.Views; |
53 | 55 | global using global::Files.App.Views.Layouts; |
54 | 56 | global using global::Files.App.Views.Shells; |
| 57 | +global using global::Files.App.Data.Enums; |
| 58 | +global using global::Files.App.Data.Messages; |
| 59 | +global using global::Files.App.Services.DateTimeFormatter; |
| 60 | +global using global::Files.App.Services.PreviewPopupProviders; |
| 61 | +global using global::Files.App.Services.Settings; |
| 62 | +global using global::Files.App.ViewModels.Dialogs; |
| 63 | +global using global::Files.App.ViewModels.Dialogs.AddItemDialog; |
| 64 | +global using global::Files.App.ViewModels.Dialogs.FileSystemDialog; |
| 65 | +global using global::Files.App.ViewModels.UserControls.Widgets; |
| 66 | +global using global::Files.App.Utils.CommandLine; |
| 67 | + |
55 | 68 | // Files.Core.Storage |
56 | 69 |
|
57 | 70 | global using global::Files.Core.Storage; |
| 71 | +global using global::Files.Core.Storage.Enums; |
58 | 72 | global using global::Files.Core.Storage.EventArguments; |
59 | 73 | global using global::Files.Core.Storage.Extensions; |
| 74 | +global using global::OwlCore.Storage; |
| 75 | + |
| 76 | +// Files.App.Storage |
| 77 | + |
| 78 | +global using global::Files.App.Storage; |
| 79 | +global using global::Files.App.Storage.Storables; |
| 80 | +global using global::Files.App.Storage.Watchers; |
| 81 | + |
60 | 82 | // Files.Shared |
61 | 83 | global using global::Files.Shared; |
62 | 84 | global using global::Files.Shared.Attributes; |
63 | 85 | global using global::Files.Shared.Extensions; |
64 | | -global using global::OwlCore.Storage; |
65 | | -global using global::System; |
66 | | -global using global::System.Collections; |
67 | | -global using global::System.Collections.Generic; |
68 | | -global using global::System.Collections.ObjectModel; |
69 | | -global using global::System.ComponentModel; |
70 | | -global using global::System.Diagnostics; |
71 | | -global using global::System.Linq; |
72 | | -global using global::System.Text.Json; |
73 | | -global using global::System.Text.Json.Serialization; |
74 | | -global using global::System.Threading; |
75 | | -global using global::System.Threading.Tasks; |
76 | | -global using SystemIO = global::System.IO; |
|
0 commit comments