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

Lines changed: 0 additions & 4 deletions
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 5 deletions
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

Lines changed: 1 addition & 7 deletions
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

Lines changed: 1 addition & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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;

0 commit comments

Comments
 (0)