Rename SharpCAT directory to Library and update all references

Co-authored-by: ekinnee <1707617+ekinnee@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-08-07 00:09:27 +00:00
parent ff341a3fed
commit 950d840238
26 changed files with 9 additions and 9 deletions

10
.vscode/tasks.json vendored
View file

@ -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"
}

View file

@ -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

View file

@ -14,7 +14,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpCAT\SharpCAT.csproj" />
<ProjectReference Include="..\..\Library\Library.csproj" />
</ItemGroup>
</Project>

View file

@ -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