Skip to content

Commit 0f023d2

Browse files
committed
Apply folder and namespace fixes on solution.
1 parent bbddfbc commit 0f023d2

File tree

236 files changed

+155
-908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+155
-908
lines changed

Agent/Extensions/PowerShellCompletionExtensions.cs

-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
using Remotely.Shared.Models;
22
using Remotely.Shared.Utilities;
3-
using System;
4-
using System.Collections.Generic;
53
using System.Linq;
64
using System.Management.Automation;
7-
using System.Text;
8-
using System.Threading.Tasks;
95

106
namespace Remotely.Agent.Extensions;
117

Agent/Interfaces/IAppLauncher.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Microsoft.AspNetCore.SignalR.Client;
2-
using System.Collections.Generic;
32
using System.Threading.Tasks;
43

54
namespace Remotely.Agent.Interfaces;

Agent/Interfaces/IDeviceInformationService.cs

-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
using Remotely.Shared.Dtos;
2-
using Remotely.Shared.Models;
3-
using System;
4-
using System.Collections.Generic;
5-
using System.Linq;
6-
using System.Text;
72
using System.Threading.Tasks;
83

94
namespace Remotely.Agent.Interfaces;

Agent/Interfaces/IScriptingShell.cs

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
7-
namespace Remotely.Agent.Interfaces;
1+
namespace Remotely.Agent.Interfaces;
82
public interface IScriptingShell
93
{
104
bool IsDisposed { get; }

Agent/Interfaces/IUpdater.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Threading.Tasks;
1+
using System.Threading.Tasks;
32

43
namespace Remotely.Agent.Interfaces;
54

Agent/Services/AgentHubConnection.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Remotely.Desktop.Shared.Native.Windows;
2-
using Microsoft.AspNetCore.SignalR.Client;
1+
using Microsoft.AspNetCore.SignalR.Client;
32
using Microsoft.Extensions.DependencyInjection;
43
using Microsoft.Extensions.Hosting;
54
using Microsoft.Extensions.Logging;
@@ -19,6 +18,7 @@
1918
using System.Threading.Tasks;
2019
using System.Timers;
2120
using Timer = System.Timers.Timer;
21+
using Remotely.Desktop.Native.Windows;
2222

2323
namespace Remotely.Agent.Services;
2424

Agent/Services/ChatClientService.cs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using Remotely.Agent.Interfaces;
44
using Remotely.Agent.Models;
55
using Remotely.Shared.Models;
6-
using Remotely.Shared.Utilities;
76
using System;
87
using System.Diagnostics;
98
using System.IO;

Agent/Services/CpuUtilizationSampler.cs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Collections.Generic;
66
using System.Diagnostics;
77
using System.Linq;
8-
using System.Text;
98
using System.Threading;
109
using System.Threading.Tasks;
1110

Agent/Services/DeviceInfoGeneratorBase.cs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using Remotely.Shared.Utilities;
55
using System;
66
using System.Collections.Generic;
7-
using System.Diagnostics;
87
using System.IO;
98
using System.Linq;
109
using System.Net.NetworkInformation;

Agent/Services/ExternalScriptingShell.cs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using Remotely.Shared.Dtos;
44
using Remotely.Shared.Enums;
55
using System;
6-
using System.Collections.Concurrent;
76
using System.Diagnostics;
87
using System.Linq;
98
using System.Threading;

Agent/Services/FileLogsManager.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
using Microsoft.Extensions.Logging;
2-
using Remotely.Shared.Services;
3-
using System;
1+
using Remotely.Shared.Services;
42
using System.Collections.Generic;
53
using System.IO;
64
using System.Linq;
75
using System.Reflection;
86
using System.Runtime.CompilerServices;
9-
using System.Text;
107
using System.Threading;
118
using System.Threading.Tasks;
129

Agent/Services/Linux/DeviceInfoGeneratorLinux.cs

-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
using Microsoft.Extensions.Logging;
22
using Remotely.Agent.Interfaces;
33
using Remotely.Shared.Dtos;
4-
using Remotely.Shared.Models;
54
using Remotely.Shared.Services;
6-
using Remotely.Shared.Utilities;
75
using System;
8-
using System.Collections.Generic;
96
using System.Linq;
10-
using System.Text;
117
using System.Threading.Tasks;
128

139
namespace Remotely.Agent.Services.Linux;

Agent/Services/Linux/UpdaterLinux.cs

-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22
using Remotely.Agent.Interfaces;
33
using Remotely.Shared.Utilities;
44
using System;
5-
using System.Collections.Generic;
65
using System.Diagnostics;
76
using System.IO;
8-
using System.Linq;
97
using System.Net;
108
using System.Net.Http;
119
using System.Net.Http.Headers;
1210
using System.Runtime.InteropServices;
13-
using System.Text;
1411
using System.Threading;
1512
using System.Threading.Tasks;
1613

Agent/Services/MacOS/AppLauncherMac.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Collections.Generic;
21
using System.Threading.Tasks;
32
using Microsoft.AspNetCore.SignalR.Client;
43
using Remotely.Agent.Interfaces;

Agent/Services/MacOS/DeviceInfoGeneratorMac.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Microsoft.Extensions.Logging;
22
using Remotely.Agent.Interfaces;
33
using Remotely.Shared.Dtos;
4-
using Remotely.Shared.Models;
54
using Remotely.Shared.Services;
65
using System;
76
using System.Linq;

Agent/Services/MacOS/UpdaterMac.cs

-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22
using Remotely.Agent.Interfaces;
33
using Remotely.Shared.Utilities;
44
using System;
5-
using System.Collections.Generic;
65
using System.Diagnostics;
76
using System.IO;
8-
using System.Linq;
97
using System.Net;
108
using System.Net.Http;
119
using System.Net.Http.Headers;
1210
using System.Runtime.InteropServices;
13-
using System.Text;
1411
using System.Threading;
1512
using System.Threading.Tasks;
1613

Agent/Services/PsCoreShell.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
using Microsoft.Extensions.DependencyInjection;
2-
using Microsoft.Extensions.Logging;
1+
using Microsoft.Extensions.Logging;
32
using Remotely.Agent.Interfaces;
43
using Remotely.Shared.Dtos;
54
using Remotely.Shared.Models;
65
using System;
7-
using System.Collections.Concurrent;
86
using System.Diagnostics;
97
using System.Linq;
108
using System.Management.Automation;

Agent/Services/ScriptExecutor.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using Remotely.Shared.Extensions;
2-
using Microsoft.AspNetCore.SignalR.Client;
3-
using Microsoft.Extensions.Hosting;
1+
using Microsoft.AspNetCore.SignalR.Client;
42
using Microsoft.Extensions.Logging;
53
using Remotely.Shared;
64
using Remotely.Shared.Dtos;

Agent/Services/Uninstaller.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Microsoft.Win32;
2-
using Remotely.Shared.Utilities;
1+
using Remotely.Shared.Utilities;
32
using System;
43
using System.Diagnostics;
54
using System.IO;

Agent/Services/UpdateDownloader.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.IO;
3-
using System.Net;
43
using System.Net.Http;
54
using System.Threading.Tasks;
65

Agent/Services/WakeOnLanService.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
43
using System.Net;
54
using System.Net.Sockets;
6-
using System.Text;
75
using System.Threading.Tasks;
86

97
namespace Remotely.Agent.Services;

Agent/Services/Windows/AppLauncherWin.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Remotely.Desktop.Shared.Native.Windows;
2-
using Microsoft.AspNetCore.SignalR.Client;
1+
using Microsoft.AspNetCore.SignalR.Client;
32
using Microsoft.Extensions.Logging;
43
using Remotely.Agent.Interfaces;
54
using Remotely.Shared.Models;
@@ -10,6 +9,7 @@
109
using System.Runtime.Versioning;
1110
using System.Security.Principal;
1211
using System.Threading.Tasks;
12+
using Remotely.Desktop.Native.Windows;
1313

1414
namespace Remotely.Agent.Services.Windows;
1515

Agent/Services/Windows/DeviceInfoGeneratorWin.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using Remotely.Desktop.Shared.Native.Windows;
2-
using Microsoft.Extensions.Logging;
1+
using Microsoft.Extensions.Logging;
32
using Remotely.Agent.Interfaces;
43
using Remotely.Shared.Dtos;
54
using System;
65
using System.Linq;
76
using System.Threading.Tasks;
7+
using Remotely.Desktop.Native.Windows;
88

99
namespace Remotely.Agent.Services.Windows;
1010

Desktop.Linux/Program.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
using Remotely.Desktop.UI.Services;
1212
using Avalonia;
1313
using Remotely.Desktop.UI;
14-
using Desktop.Shared.Services;
1514

16-
namespace Remotely.Desktop.XPlat;
15+
namespace Remotely.Desktop.Linux;
1716

1817
public class Program
1918
{

Desktop.Linux/Services/AppStartup.cs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using Remotely.Desktop.UI.Services;
55
using Remotely.Shared.Models;
66
using Microsoft.Extensions.Logging;
7-
using Desktop.Shared.Services;
87

98
namespace Remotely.Desktop.Linux.Services;
109

Desktop.Linux/Services/KeyboardMouseInputLinux.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Remotely.Desktop.Shared.Abstractions;
22
using Remotely.Desktop.Shared.Enums;
3-
using Remotely.Desktop.Shared.Native.Linux;
43
using Remotely.Desktop.Shared.Services;
54
using Microsoft.Extensions.Logging;
5+
using Remotely.Desktop.Native.Linux;
66

77
namespace Remotely.Desktop.Linux.Services;
88

Desktop.Linux/Services/ScreenCapturerLinux.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using Remotely.Desktop.Shared.Abstractions;
2-
using Remotely.Desktop.Shared.Native.Linux;
32
using Remotely.Desktop.Shared.Services;
43
using Microsoft.Extensions.Logging;
54
using Remotely.Shared.Primitives;
65
using SkiaSharp;
76
using System.Drawing;
87
using System.Runtime.InteropServices;
8+
using Remotely.Desktop.Native.Linux;
99

1010
namespace Remotely.Desktop.Linux.Services;
1111

Desktop.Linux/Startup/IServiceCollectionExtensions.cs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using Remotely.Desktop.Shared.Startup;
33
using Microsoft.Extensions.DependencyInjection;
44
using Remotely.Desktop.Linux.Services;
5-
using Remotely.Desktop.UI.ViewModels;
65
using Remotely.Desktop.UI.Services;
76
using Remotely.Desktop.UI.Startup;
87

Desktop.Linux/Usings.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
global using System;
22
global using System.Collections.Generic;
33
global using System.Linq;
4-
global using System.Text;
54
global using System.Threading.Tasks;

Desktop.Native/Linux/LibX11.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group.
2626

2727
using System.Runtime.InteropServices;
2828

29-
namespace Remotely.Desktop.Shared.Native.Linux;
29+
namespace Remotely.Desktop.Native.Linux;
3030

3131
public static unsafe class LibX11
3232
{

Desktop.Native/Linux/LibXtst.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Runtime.InteropServices;
22

3-
namespace Remotely.Desktop.Shared.Native.Linux;
3+
namespace Remotely.Desktop.Native.Linux;
44

55
public class LibXtst
66
{

Desktop.Native/Linux/Libc.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Runtime.InteropServices;
22

3-
namespace Remotely.Desktop.Shared.Native.Linux;
3+
namespace Remotely.Desktop.Native.Linux;
44

55
public class Libc
66
{

Desktop.Native/Linux/libXrandr.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
using System.Runtime.InteropServices;
3131

32-
namespace Remotely.Desktop.Shared.Native.Linux;
32+
namespace Remotely.Desktop.Native.Linux;
3333

3434
public static class LibXrandr
3535
{

Desktop.Native/Windows/ADVAPI32.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
using System;
21
using System.Runtime.InteropServices;
32
using System.Security;
43

5-
namespace Remotely.Desktop.Shared.Native.Windows;
4+
namespace Remotely.Desktop.Native.Windows;
65

76
public static class ADVAPI32
87
{

Desktop.Native/Windows/GDI32.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using System;
2-
using System.Runtime.InteropServices;
1+
using System.Runtime.InteropServices;
32

4-
namespace Remotely.Desktop.Shared.Native.Windows;
3+
namespace Remotely.Desktop.Native.Windows;
54

65
public static class GDI32
76
{

Desktop.Native/Windows/Kernel32.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using System;
21
using System.Runtime.InteropServices;
32

4-
namespace Remotely.Desktop.Shared.Native.Windows;
3+
namespace Remotely.Desktop.Native.Windows;
54

65
public static class Kernel32
76
{

Desktop.Native/Windows/SECUR32.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
using Remotely.Desktop.Shared.Native.Windows;
2-
using Microsoft.Win32.SafeHandles;
3-
using System;
1+
using Microsoft.Win32.SafeHandles;
42
using System.Runtime.InteropServices;
53
using System.Runtime.Versioning;
4+
using Remotely.Desktop.Native.Windows;
65

76
public static class SECUR32
87
{

Desktop.Native/Windows/Shlwapi.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Runtime.InteropServices;
22

3-
namespace Remotely.Desktop.Shared.Native.Windows;
3+
namespace Remotely.Desktop.Native.Windows;
44

55
// https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-isos
66
public class Shlwapi

Desktop.Native/Windows/User32.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.Win32.SafeHandles;
22
using System.Runtime.InteropServices;
33

4-
namespace Remotely.Desktop.Shared.Native.Windows;
4+
namespace Remotely.Desktop.Native.Windows;
55

66
public static class User32
77
{

Desktop.Native/Windows/WTSAPI32.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using System;
2-
using System.Runtime.InteropServices;
1+
using System.Runtime.InteropServices;
32

4-
namespace Remotely.Desktop.Shared.Native.Windows;
3+
namespace Remotely.Desktop.Native.Windows;
54

65
public static class WTSAPI32
76
{

0 commit comments

Comments
 (0)