From 82983da2709c9333d0b6bec3bc83354f2a08714b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 Aug 2025 22:34:00 +0000 Subject: [PATCH] Complete rename from SharpCATLib to SharpCAT throughout codebase Co-authored-by: ekinnee <1707617+ekinnee@users.noreply.github.com> --- .vscode/tasks.json | 10 +++++----- SharpCAT/FlrigProtocol.cs | 2 +- SharpCAT/Models/CATCommand.cs | 2 +- SharpCAT/Models/CATRadio.cs | 2 +- SharpCAT/Models/CIVCommand.cs | 2 +- SharpCAT/Models/CIVRadio.cs | 2 +- SharpCAT/Models/IRadio.cs | 2 +- SharpCAT/Radios/Icom/ID4100a.cs | 4 ++-- SharpCAT/Radios/Icom/ID880H.cs | 2 +- SharpCAT/Radios/Kenwood/THD74A.cs | 2 +- SharpCAT/Radios/Yaesu/FT818.cs | 4 ++-- SharpCAT/Serial.cs | 2 +- SharpCAT/SerialClient.cs | 2 +- SharpCAT/SerialServer.cs | 2 +- SharpCAT/SharpCAT.cs | 2 +- SharpCAT/{SharpCATLib.csproj => SharpCAT.csproj} | 0 SharpCAT/Socket.cs | 2 +- 17 files changed, 22 insertions(+), 22 deletions(-) rename SharpCAT/{SharpCATLib.csproj => SharpCAT.csproj} (100%) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 943ce9b..4396256 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/SharpCAT/SharpCATLib.csproj", + "${workspaceFolder}/SharpCAT/SharpCAT.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -23,7 +23,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/SharpCAT/SharpCATLib.csproj", + "${workspaceFolder}/SharpCAT/SharpCAT.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -37,7 +37,7 @@ "watch", "run", "--project", - "${workspaceFolder}/SharpCAT/SharpCATLib.csproj" + "${workspaceFolder}/SharpCAT/SharpCAT.csproj" ], "problemMatcher": "$msCompile" }, @@ -47,7 +47,7 @@ "type": "process", "args": [ "clean", - "${workspaceFolder}/SharpCAT/SharpCATLib.csproj", + "${workspaceFolder}/SharpCAT/SharpCAT.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -59,7 +59,7 @@ "type": "process", "args": [ "restore", - "${workspaceFolder}/SharpCAT/SharpCATLib.csproj" + "${workspaceFolder}/SharpCAT/SharpCAT.csproj" ], "problemMatcher": "$msCompile" } diff --git a/SharpCAT/FlrigProtocol.cs b/SharpCAT/FlrigProtocol.cs index 75c1f94..1260ca1 100644 --- a/SharpCAT/FlrigProtocol.cs +++ b/SharpCAT/FlrigProtocol.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace SharpCATLib +namespace SharpCAT { class FlrigProtocol { diff --git a/SharpCAT/Models/CATCommand.cs b/SharpCAT/Models/CATCommand.cs index a618e6c..6669ab9 100644 --- a/SharpCAT/Models/CATCommand.cs +++ b/SharpCAT/Models/CATCommand.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Models +namespace SharpCAT.Models { internal class CATCommand { diff --git a/SharpCAT/Models/CATRadio.cs b/SharpCAT/Models/CATRadio.cs index b6c06a0..a8559c4 100644 --- a/SharpCAT/Models/CATRadio.cs +++ b/SharpCAT/Models/CATRadio.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Models +namespace SharpCAT.Models { //Base Radio Model public partial class CATRadio : IRadio diff --git a/SharpCAT/Models/CIVCommand.cs b/SharpCAT/Models/CIVCommand.cs index 5c02fd5..77284cb 100644 --- a/SharpCAT/Models/CIVCommand.cs +++ b/SharpCAT/Models/CIVCommand.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Models +namespace SharpCAT.Models { internal class CIVCommand { diff --git a/SharpCAT/Models/CIVRadio.cs b/SharpCAT/Models/CIVRadio.cs index e1f359c..3f3c1e3 100644 --- a/SharpCAT/Models/CIVRadio.cs +++ b/SharpCAT/Models/CIVRadio.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Models +namespace SharpCAT.Models { internal class CIVRadio : IRadio { diff --git a/SharpCAT/Models/IRadio.cs b/SharpCAT/Models/IRadio.cs index 3721fd9..6689c64 100644 --- a/SharpCAT/Models/IRadio.cs +++ b/SharpCAT/Models/IRadio.cs @@ -1,5 +1,5 @@ using System; -namespace SharpCATLib.Models +namespace SharpCAT.Models { partial interface IRadio { diff --git a/SharpCAT/Radios/Icom/ID4100a.cs b/SharpCAT/Radios/Icom/ID4100a.cs index 95d21c3..3557e1f 100644 --- a/SharpCAT/Radios/Icom/ID4100a.cs +++ b/SharpCAT/Radios/Icom/ID4100a.cs @@ -1,6 +1,6 @@ -using SharpCATLib.Models; +using SharpCAT.Models; -namespace SharpCATLib.Radios.Icom +namespace SharpCAT.Radios.Icom { internal class ID4100a : CIVRadio { diff --git a/SharpCAT/Radios/Icom/ID880H.cs b/SharpCAT/Radios/Icom/ID880H.cs index 4bcbb03..33ddace 100644 --- a/SharpCAT/Radios/Icom/ID880H.cs +++ b/SharpCAT/Radios/Icom/ID880H.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Radios.Icom +namespace SharpCAT.Radios.Icom { internal class ID880H { diff --git a/SharpCAT/Radios/Kenwood/THD74A.cs b/SharpCAT/Radios/Kenwood/THD74A.cs index 5711d9d..e1185fe 100644 --- a/SharpCAT/Radios/Kenwood/THD74A.cs +++ b/SharpCAT/Radios/Kenwood/THD74A.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib.Radios.Kenwood +namespace SharpCAT.Radios.Kenwood { internal class THD74A { diff --git a/SharpCAT/Radios/Yaesu/FT818.cs b/SharpCAT/Radios/Yaesu/FT818.cs index 9f7cd3f..2a29837 100644 --- a/SharpCAT/Radios/Yaesu/FT818.cs +++ b/SharpCAT/Radios/Yaesu/FT818.cs @@ -1,6 +1,6 @@ -using SharpCATLib.Models; +using SharpCAT.Models; -namespace SharpCATLib.Radios.Yaesu +namespace SharpCAT.Radios.Yaesu { public class FT818 : CATRadio { diff --git a/SharpCAT/Serial.cs b/SharpCAT/Serial.cs index 8b39baa..7d15e4e 100644 --- a/SharpCAT/Serial.cs +++ b/SharpCAT/Serial.cs @@ -1,7 +1,7 @@ using System; using System.IO.Ports; -namespace SharpCATLib +namespace SharpCAT { public class Serial { diff --git a/SharpCAT/SerialClient.cs b/SharpCAT/SerialClient.cs index 6990f42..6f9a774 100644 --- a/SharpCAT/SerialClient.cs +++ b/SharpCAT/SerialClient.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib +namespace SharpCAT { internal class SerialClient { diff --git a/SharpCAT/SerialServer.cs b/SharpCAT/SerialServer.cs index 8e8fc9e..ae946b1 100644 --- a/SharpCAT/SerialServer.cs +++ b/SharpCAT/SerialServer.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib +namespace SharpCAT { internal class SerialServer { diff --git a/SharpCAT/SharpCAT.cs b/SharpCAT/SharpCAT.cs index ccad4b2..aeb95aa 100644 --- a/SharpCAT/SharpCAT.cs +++ b/SharpCAT/SharpCAT.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.IO.Ports; -namespace SharpCATLib +namespace SharpCAT { public class SharpCAT { diff --git a/SharpCAT/SharpCATLib.csproj b/SharpCAT/SharpCAT.csproj similarity index 100% rename from SharpCAT/SharpCATLib.csproj rename to SharpCAT/SharpCAT.csproj diff --git a/SharpCAT/Socket.cs b/SharpCAT/Socket.cs index d51f562..23c0cff 100644 --- a/SharpCAT/Socket.cs +++ b/SharpCAT/Socket.cs @@ -1,4 +1,4 @@ -namespace SharpCATLib +namespace SharpCAT { internal class Socket {