mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-02-10 17:34:16 +01:00
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:
commit
b9287c3ecf
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib.Models
|
namespace SharpCAT.Models
|
||||||
{
|
{
|
||||||
internal class CATCommand
|
internal class CATCommand
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib.Models
|
namespace SharpCAT.Models
|
||||||
{
|
{
|
||||||
internal class CIVCommand
|
internal class CIVCommand
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib.Models
|
namespace SharpCAT.Models
|
||||||
{
|
{
|
||||||
internal class CIVRadio : IRadio
|
internal class CIVRadio : IRadio
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
namespace SharpCATLib.Models
|
namespace SharpCAT.Models
|
||||||
{
|
{
|
||||||
partial interface IRadio
|
partial interface IRadio
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib.Radios.Icom
|
namespace SharpCAT.Radios.Icom
|
||||||
{
|
{
|
||||||
internal class ID880H
|
internal class ID880H
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib.Radios.Kenwood
|
namespace SharpCAT.Radios.Kenwood
|
||||||
{
|
{
|
||||||
internal class THD74A
|
internal class THD74A
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib
|
namespace SharpCAT
|
||||||
{
|
{
|
||||||
internal class SerialClient
|
internal class SerialClient
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib
|
namespace SharpCAT
|
||||||
{
|
{
|
||||||
internal class SerialServer
|
internal class SerialServer
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace SharpCATLib
|
namespace SharpCAT
|
||||||
{
|
{
|
||||||
internal class Socket
|
internal class Socket
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue