-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #689 from immense/tech/file-scoped-namespaces
Convert to file-scoped namespaces.
- Loading branch information
Showing
243 changed files
with
17,772 additions
and
18,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
|
||
namespace Remotely.Agent.Interfaces | ||
namespace Remotely.Agent.Interfaces; | ||
|
||
public interface IUpdater | ||
{ | ||
public interface IUpdater | ||
{ | ||
Task BeginChecking(); | ||
Task CheckForUpdates(); | ||
Task InstallLatestVersion(); | ||
} | ||
Task BeginChecking(); | ||
Task CheckForUpdates(); | ||
Task InstallLatestVersion(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
using System.IO.Pipes; | ||
|
||
namespace Remotely.Agent.Models | ||
namespace Remotely.Agent.Models; | ||
|
||
public class ChatSession | ||
{ | ||
public class ChatSession | ||
{ | ||
public int ProcessID { get; set; } | ||
public NamedPipeClientStream PipeStream { get; set; } | ||
} | ||
public int ProcessID { get; set; } | ||
public NamedPipeClientStream PipeStream { get; set; } | ||
} |
Oops, something went wrong.