Merge pull request #19 from ekinnee/copilot/fix-1bc956c7-b256-461c-82f1-04d6eaeb84fb

Rename core library from SharpCATLib to SharpCAT throughout codebase
This commit is contained in:
Erick Kinnee 2025-08-06 18:10:03 -05:00 committed by GitHub
commit b9287c3ecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 22 additions and 22 deletions

10
.vscode/tasks.json vendored
View file

@ -7,7 +7,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"build", "build",
"${workspaceFolder}/SharpCAT/SharpCATLib.csproj", "${workspaceFolder}/SharpCAT/SharpCAT.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -23,7 +23,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"publish", "publish",
"${workspaceFolder}/SharpCAT/SharpCATLib.csproj", "${workspaceFolder}/SharpCAT/SharpCAT.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -37,7 +37,7 @@
"watch", "watch",
"run", "run",
"--project", "--project",
"${workspaceFolder}/SharpCAT/SharpCATLib.csproj" "${workspaceFolder}/SharpCAT/SharpCAT.csproj"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
}, },
@ -47,7 +47,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"clean", "clean",
"${workspaceFolder}/SharpCAT/SharpCATLib.csproj", "${workspaceFolder}/SharpCAT/SharpCAT.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -59,7 +59,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"restore", "restore",
"${workspaceFolder}/SharpCAT/SharpCATLib.csproj" "${workspaceFolder}/SharpCAT/SharpCAT.csproj"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
} }

View file

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace SharpCATLib namespace SharpCAT
{ {
class FlrigProtocol class FlrigProtocol
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Models namespace SharpCAT.Models
{ {
internal class CATCommand internal class CATCommand
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Models namespace SharpCAT.Models
{ {
//Base Radio Model //Base Radio Model
public partial class CATRadio : IRadio public partial class CATRadio : IRadio

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Models namespace SharpCAT.Models
{ {
internal class CIVCommand internal class CIVCommand
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Models namespace SharpCAT.Models
{ {
internal class CIVRadio : IRadio internal class CIVRadio : IRadio
{ {

View file

@ -1,5 +1,5 @@
using System; using System;
namespace SharpCATLib.Models namespace SharpCAT.Models
{ {
partial interface IRadio partial interface IRadio
{ {

View file

@ -1,6 +1,6 @@
using SharpCATLib.Models; using SharpCAT.Models;
namespace SharpCATLib.Radios.Icom namespace SharpCAT.Radios.Icom
{ {
internal class ID4100a : CIVRadio internal class ID4100a : CIVRadio
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Radios.Icom namespace SharpCAT.Radios.Icom
{ {
internal class ID880H internal class ID880H
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib.Radios.Kenwood namespace SharpCAT.Radios.Kenwood
{ {
internal class THD74A internal class THD74A
{ {

View file

@ -1,6 +1,6 @@
using SharpCATLib.Models; using SharpCAT.Models;
namespace SharpCATLib.Radios.Yaesu namespace SharpCAT.Radios.Yaesu
{ {
public class FT818 : CATRadio public class FT818 : CATRadio
{ {

View file

@ -1,7 +1,7 @@
using System; using System;
using System.IO.Ports; using System.IO.Ports;
namespace SharpCATLib namespace SharpCAT
{ {
public class Serial public class Serial
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib namespace SharpCAT
{ {
internal class SerialClient internal class SerialClient
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib namespace SharpCAT
{ {
internal class SerialServer internal class SerialServer
{ {

View file

@ -1,7 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO.Ports; using System.IO.Ports;
namespace SharpCATLib namespace SharpCAT
{ {
public class SharpCAT public class SharpCAT
{ {

View file

@ -1,4 +1,4 @@
namespace SharpCATLib namespace SharpCAT
{ {
internal class Socket internal class Socket
{ {