From 950d840238e0675f744d7b6caddaa7f90ff7ea96 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:09:27 +0000 Subject: [PATCH] Rename SharpCAT directory to Library and update all references Co-authored-by: ekinnee <1707617+ekinnee@users.noreply.github.com> --- .vscode/tasks.json | 10 +++++----- .../Docs/Radios/Icom/ID4100a/advanced-manual.pdf | Bin .../Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf | Bin {SharpCAT => Library}/FlrigProtocol.cs | 0 SharpCAT/SharpCAT.csproj => Library/Library.csproj | 0 {SharpCAT => Library}/Models/CATCommand.cs | 0 {SharpCAT => Library}/Models/CATRadio.cs | 0 {SharpCAT => Library}/Models/CIVCommand.cs | 0 {SharpCAT => Library}/Models/CIVRadio.cs | 0 {SharpCAT => Library}/Models/IRadio.cs | 0 {SharpCAT => Library}/Radios/Icom/ID4100a.cs | 0 {SharpCAT => Library}/Radios/Icom/ID4100a.json | 0 {SharpCAT => Library}/Radios/Icom/ID880H.cs | 0 {SharpCAT => Library}/Radios/Icom/ID880H.json | 0 {SharpCAT => Library}/Radios/Kenwood/THD74A.cs | 0 {SharpCAT => Library}/Radios/Kenwood/THD74A.json | 0 {SharpCAT => Library}/Radios/Yaesu/FT818.cs | 0 {SharpCAT => Library}/Radios/Yaesu/FT818.json | 0 {SharpCAT => Library}/Serial.cs | 0 {SharpCAT => Library}/SerialClient.cs | 0 {SharpCAT => Library}/SerialServer.cs | 0 {SharpCAT => Library}/SharpCAT.cs | 0 {SharpCAT => Library}/Socket.cs | 0 README.md | 4 ++-- Server/SharpCAT.Server/SharpCAT.Server.csproj | 2 +- SharpCAT.sln | 2 +- 26 files changed, 9 insertions(+), 9 deletions(-) rename {SharpCAT => Library}/Docs/Radios/Icom/ID4100a/advanced-manual.pdf (100%) rename {SharpCAT => Library}/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf (100%) rename {SharpCAT => Library}/FlrigProtocol.cs (100%) rename SharpCAT/SharpCAT.csproj => Library/Library.csproj (100%) rename {SharpCAT => Library}/Models/CATCommand.cs (100%) rename {SharpCAT => Library}/Models/CATRadio.cs (100%) rename {SharpCAT => Library}/Models/CIVCommand.cs (100%) rename {SharpCAT => Library}/Models/CIVRadio.cs (100%) rename {SharpCAT => Library}/Models/IRadio.cs (100%) rename {SharpCAT => Library}/Radios/Icom/ID4100a.cs (100%) rename {SharpCAT => Library}/Radios/Icom/ID4100a.json (100%) rename {SharpCAT => Library}/Radios/Icom/ID880H.cs (100%) rename {SharpCAT => Library}/Radios/Icom/ID880H.json (100%) rename {SharpCAT => Library}/Radios/Kenwood/THD74A.cs (100%) rename {SharpCAT => Library}/Radios/Kenwood/THD74A.json (100%) rename {SharpCAT => Library}/Radios/Yaesu/FT818.cs (100%) rename {SharpCAT => Library}/Radios/Yaesu/FT818.json (100%) rename {SharpCAT => Library}/Serial.cs (100%) rename {SharpCAT => Library}/SerialClient.cs (100%) rename {SharpCAT => Library}/SerialServer.cs (100%) rename {SharpCAT => Library}/SharpCAT.cs (100%) rename {SharpCAT => Library}/Socket.cs (100%) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4396256..fb59169 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/SharpCAT/SharpCAT.csproj", + "${workspaceFolder}/Library/Library.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -23,7 +23,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/SharpCAT/SharpCAT.csproj", + "${workspaceFolder}/Library/Library.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -37,7 +37,7 @@ "watch", "run", "--project", - "${workspaceFolder}/SharpCAT/SharpCAT.csproj" + "${workspaceFolder}/Library/Library.csproj" ], "problemMatcher": "$msCompile" }, @@ -47,7 +47,7 @@ "type": "process", "args": [ "clean", - "${workspaceFolder}/SharpCAT/SharpCAT.csproj", + "${workspaceFolder}/Library/Library.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -59,7 +59,7 @@ "type": "process", "args": [ "restore", - "${workspaceFolder}/SharpCAT/SharpCAT.csproj" + "${workspaceFolder}/Library/Library.csproj" ], "problemMatcher": "$msCompile" } diff --git a/SharpCAT/Docs/Radios/Icom/ID4100a/advanced-manual.pdf b/Library/Docs/Radios/Icom/ID4100a/advanced-manual.pdf similarity index 100% rename from SharpCAT/Docs/Radios/Icom/ID4100a/advanced-manual.pdf rename to Library/Docs/Radios/Icom/ID4100a/advanced-manual.pdf diff --git a/SharpCAT/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf b/Library/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf similarity index 100% rename from SharpCAT/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf rename to Library/Docs/Radios/Yaesu/FT818/Yaesu-FT-818nd-manual-FT818.pdf diff --git a/SharpCAT/FlrigProtocol.cs b/Library/FlrigProtocol.cs similarity index 100% rename from SharpCAT/FlrigProtocol.cs rename to Library/FlrigProtocol.cs diff --git a/SharpCAT/SharpCAT.csproj b/Library/Library.csproj similarity index 100% rename from SharpCAT/SharpCAT.csproj rename to Library/Library.csproj diff --git a/SharpCAT/Models/CATCommand.cs b/Library/Models/CATCommand.cs similarity index 100% rename from SharpCAT/Models/CATCommand.cs rename to Library/Models/CATCommand.cs diff --git a/SharpCAT/Models/CATRadio.cs b/Library/Models/CATRadio.cs similarity index 100% rename from SharpCAT/Models/CATRadio.cs rename to Library/Models/CATRadio.cs diff --git a/SharpCAT/Models/CIVCommand.cs b/Library/Models/CIVCommand.cs similarity index 100% rename from SharpCAT/Models/CIVCommand.cs rename to Library/Models/CIVCommand.cs diff --git a/SharpCAT/Models/CIVRadio.cs b/Library/Models/CIVRadio.cs similarity index 100% rename from SharpCAT/Models/CIVRadio.cs rename to Library/Models/CIVRadio.cs diff --git a/SharpCAT/Models/IRadio.cs b/Library/Models/IRadio.cs similarity index 100% rename from SharpCAT/Models/IRadio.cs rename to Library/Models/IRadio.cs diff --git a/SharpCAT/Radios/Icom/ID4100a.cs b/Library/Radios/Icom/ID4100a.cs similarity index 100% rename from SharpCAT/Radios/Icom/ID4100a.cs rename to Library/Radios/Icom/ID4100a.cs diff --git a/SharpCAT/Radios/Icom/ID4100a.json b/Library/Radios/Icom/ID4100a.json similarity index 100% rename from SharpCAT/Radios/Icom/ID4100a.json rename to Library/Radios/Icom/ID4100a.json diff --git a/SharpCAT/Radios/Icom/ID880H.cs b/Library/Radios/Icom/ID880H.cs similarity index 100% rename from SharpCAT/Radios/Icom/ID880H.cs rename to Library/Radios/Icom/ID880H.cs diff --git a/SharpCAT/Radios/Icom/ID880H.json b/Library/Radios/Icom/ID880H.json similarity index 100% rename from SharpCAT/Radios/Icom/ID880H.json rename to Library/Radios/Icom/ID880H.json diff --git a/SharpCAT/Radios/Kenwood/THD74A.cs b/Library/Radios/Kenwood/THD74A.cs similarity index 100% rename from SharpCAT/Radios/Kenwood/THD74A.cs rename to Library/Radios/Kenwood/THD74A.cs diff --git a/SharpCAT/Radios/Kenwood/THD74A.json b/Library/Radios/Kenwood/THD74A.json similarity index 100% rename from SharpCAT/Radios/Kenwood/THD74A.json rename to Library/Radios/Kenwood/THD74A.json diff --git a/SharpCAT/Radios/Yaesu/FT818.cs b/Library/Radios/Yaesu/FT818.cs similarity index 100% rename from SharpCAT/Radios/Yaesu/FT818.cs rename to Library/Radios/Yaesu/FT818.cs diff --git a/SharpCAT/Radios/Yaesu/FT818.json b/Library/Radios/Yaesu/FT818.json similarity index 100% rename from SharpCAT/Radios/Yaesu/FT818.json rename to Library/Radios/Yaesu/FT818.json diff --git a/SharpCAT/Serial.cs b/Library/Serial.cs similarity index 100% rename from SharpCAT/Serial.cs rename to Library/Serial.cs diff --git a/SharpCAT/SerialClient.cs b/Library/SerialClient.cs similarity index 100% rename from SharpCAT/SerialClient.cs rename to Library/SerialClient.cs diff --git a/SharpCAT/SerialServer.cs b/Library/SerialServer.cs similarity index 100% rename from SharpCAT/SerialServer.cs rename to Library/SerialServer.cs diff --git a/SharpCAT/SharpCAT.cs b/Library/SharpCAT.cs similarity index 100% rename from SharpCAT/SharpCAT.cs rename to Library/SharpCAT.cs diff --git a/SharpCAT/Socket.cs b/Library/Socket.cs similarity index 100% rename from SharpCAT/Socket.cs rename to Library/Socket.cs diff --git a/README.md b/README.md index 957c34b..d26d2f7 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ curl -X POST http://localhost:5188/api/cat/command \ ## Project Structure ``` -SharpCAT/ # Core CAT library (cross-platform) +Library/ # Core CAT library (cross-platform) Server/SharpCAT.Server/ # ASP.NET Core Web API server ``` @@ -79,7 +79,7 @@ dotnet build ### Build Just the Core Library ```bash -dotnet build SharpCAT/SharpCAT.csproj +dotnet build Library/Library.csproj ``` ### VS Code Tasks diff --git a/Server/SharpCAT.Server/SharpCAT.Server.csproj b/Server/SharpCAT.Server/SharpCAT.Server.csproj index a865745..da0439c 100644 --- a/Server/SharpCAT.Server/SharpCAT.Server.csproj +++ b/Server/SharpCAT.Server/SharpCAT.Server.csproj @@ -14,7 +14,7 @@ - + diff --git a/SharpCAT.sln b/SharpCAT.sln index a8a1593..f7857a8 100644 --- a/SharpCAT.sln +++ b/SharpCAT.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpCAT", "SharpCAT\SharpCAT.csproj", "{3EA807EF-B181-4C54-8502-0A2A3EACE984}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Library", "Library\Library.csproj", "{3EA807EF-B181-4C54-8502-0A2A3EACE984}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{43CFF66C-84E6-4EC2-AE4F-005FB80D74D5}" EndProject