mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-01-10 10:30:02 +01:00
Complete rename from SharpCATLib to SharpCAT throughout codebase
Co-authored-by: ekinnee <1707617+ekinnee@users.noreply.github.com>
This commit is contained in:
parent
a16d2e4b92
commit
82983da270
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
class FlrigProtocol
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Models
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
internal class CATCommand
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Models
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
//Base Radio Model
|
||||
public partial class CATRadio : IRadio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Models
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
internal class CIVCommand
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Models
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
internal class CIVRadio : IRadio
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
using System;
|
||||
namespace SharpCATLib.Models
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Radios.Icom
|
||||
namespace SharpCAT.Radios.Icom
|
||||
{
|
||||
internal class ID880H
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib.Radios.Kenwood
|
||||
namespace SharpCAT.Radios.Kenwood
|
||||
{
|
||||
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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.IO.Ports;
|
||||
|
||||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
public class Serial
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
internal class SerialClient
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
internal class SerialServer
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO.Ports;
|
||||
|
||||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
public class SharpCAT
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace SharpCATLib
|
||||
namespace SharpCAT
|
||||
{
|
||||
internal class Socket
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue