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", "type": "process",
"args": [ "args": [
"build", "build",
"${workspaceFolder}/SharpCAT/SharpCAT.csproj", "${workspaceFolder}/Library/Library.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/SharpCAT.csproj", "${workspaceFolder}/Library/Library.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@ -37,7 +37,7 @@
"watch", "watch",
"run", "run",
"--project", "--project",
"${workspaceFolder}/SharpCAT/SharpCAT.csproj" "${workspaceFolder}/Library/Library.csproj"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
}, },
@ -47,7 +47,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"clean", "clean",
"${workspaceFolder}/SharpCAT/SharpCAT.csproj", "${workspaceFolder}/Library/Library.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/SharpCAT.csproj" "${workspaceFolder}/Library/Library.csproj"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
} }

View file

@ -62,7 +62,7 @@ curl -X POST http://localhost:5188/api/cat/command \
## Project Structure ## Project Structure
``` ```
SharpCAT/ # Core CAT library (cross-platform) Library/ # Core CAT library (cross-platform)
Server/SharpCAT.Server/ # ASP.NET Core Web API server Server/SharpCAT.Server/ # ASP.NET Core Web API server
``` ```
@ -79,7 +79,7 @@ dotnet build
### Build Just the Core Library ### Build Just the Core Library
```bash ```bash
dotnet build SharpCAT/SharpCAT.csproj dotnet build Library/Library.csproj
``` ```
### VS Code Tasks ### VS Code Tasks

View file

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

View file

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59 VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1 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 EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{43CFF66C-84E6-4EC2-AE4F-005FB80D74D5}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{43CFF66C-84E6-4EC2-AE4F-005FB80D74D5}"
EndProject EndProject