chore: clean up repo — add .gitignore, README, remove tracked build artifacts and old_source
- Add .gitignore for bin/, obj/, .vs/, old_source/, IDE files
- Remove 1145 tracked files that should never have been committed
- Add README.md with project overview and build instructions
- Trim CLAUDE.md, add .claudeignore, skills, and PreToolUse hook
- old_source/ is recoverable from the initial commit (6e1b929) if needed
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(dotnet:*)",
|
||||
"Bash(xargs ls:*)",
|
||||
"Bash(ls \"C:\\\\Users\\\\herli\\\\Documents\\\\ClaudeProjects\\\\HC_APTBS\\\\Resources\\\\Native\"\" 2>/dev/null || echo \"Directory not found \")",
|
||||
"Bash(grep -r \"PumpId\\\\|Pump.*Selector\\\\|PumpCombo\" /c/Users/herli/Documents/ClaudeProjects/HC_APTBS --include=*.cs --include=*.xaml)",
|
||||
"Bash(grep -r \"Pumps\\\\|PumpID\" /c/Users/herli/Documents/ClaudeProjects/HC_APTBS/old_source --include=*.cs --include=*.xaml)",
|
||||
"Bash(grep -r \"GetDevices\\\\|GetPorts\\\\|SerialPort\\\\|FindPort\\\\|ListPorts\" /c/Users/herli/Documents/ClaudeProjects/HC_APTBS/old_source --include=*.cs)",
|
||||
"Bash(grep -l \"PumpDefinition\\\\|BenchConfiguration\" /c/Users/herli/Documents/ClaudeProjects/HC_APTBS/Models/*.cs)",
|
||||
"Bash(find C:/Users/herli/Documents/ClaudeProjects/HC_APTBS/old_source -name *.xml -o -name *.dat -o -name *.data)",
|
||||
"Bash(find C:/Users/herli/Documents/ClaudeProjects/HC_APTBS/old_source -name data.herlic -o -name data* -type f)",
|
||||
"Bash(mkdir -p \"C:/Users/herli/.HC_APTBS/config\")",
|
||||
"Bash(cp \"C:/Users/herli/AppData/Roaming/Local/ConfigH/nuevaconfig.xml\" \"C:/Users/herli/.HC_APTBS/config/pumps.xml\")",
|
||||
"Bash(xargs grep:*)",
|
||||
"Bash(grep -r \"KlineKeys\\\\|class.*Kline\" C:UsersherliDocumentsClaudeProjectsHC_APTBS --include=*.cs)",
|
||||
"Bash(grep -r \"DetectKLinePort\\\\|GetKLinePort\" C:UsersherliDocumentsClaudeProjectsHC_APTBS --include=*.cs)",
|
||||
"Bash(python3)",
|
||||
"Bash(ls \"C:\\\\Users\\\\herli\\\\.claude\\\\settings\"*)",
|
||||
"Bash(find \"C:\\\\Users\\\\herli\\\\Documents\\\\ClaudeProjects\\\\HC_APTBS\" -name \"*.cs\" -not -path \"*/old_source/*\" -not -path \"*/obj/*\" -not -path \"*/bin/*\" -exec wc -l {} +)",
|
||||
"Skill(update-config)",
|
||||
"Skill(update-config:*)",
|
||||
"Bash(echo \"exit: $?\")",
|
||||
"Bash(python3 -c ':*)",
|
||||
"Bash(python3 -c \"import json; f=open\\('C:/Users/herli/Documents/ClaudeProjects/HC_APTBS/.claude/settings.json'\\); d=json.load\\(f\\); print\\('Valid JSON'\\); print\\('Hook command:', d['hooks']['PreToolUse'][0]['hooks'][0]['command'][:50]+'...'\\)\")"
|
||||
]
|
||||
}
|
||||
}
|
||||
43
.claude/skills/ship.md
Normal file
43
.claude/skills/ship.md
Normal file
@@ -0,0 +1,43 @@
|
||||
# Ship — commit and push current changes
|
||||
|
||||
The user has finished reviewing and iterating on a section of work. Stage, commit, and push to the Gitea remote.
|
||||
|
||||
## Steps
|
||||
|
||||
1. **Assess changes.** Run these in parallel:
|
||||
- `git status` — see untracked and modified files
|
||||
- `git diff` and `git diff --cached` — see unstaged and staged changes
|
||||
- `git log --oneline -5` — check recent commit style
|
||||
|
||||
2. **Stage files.** Add changed and new files by name. Do NOT use `git add -A` or `git add .` — be explicit to avoid accidentally committing secrets, build artifacts, or files in `.gitignore`.
|
||||
|
||||
3. **Draft the commit message.** Follow conventional commits (`feat:`, `fix:`, `refactor:`, `docs:`, `chore:`). Keep it concise — one line summary, optional body if the change is complex. End with:
|
||||
```
|
||||
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
||||
```
|
||||
|
||||
4. **Commit.** Use a HEREDOC for the message:
|
||||
```bash
|
||||
git commit -m "$(cat <<'EOF'
|
||||
type: summary of changes
|
||||
|
||||
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
||||
EOF
|
||||
)"
|
||||
```
|
||||
|
||||
5. **Push.** Push to origin:
|
||||
```bash
|
||||
git push origin main
|
||||
```
|
||||
If the push is rejected (remote has new commits), run `git pull --rebase origin main` first, then push again.
|
||||
|
||||
6. **Confirm.** Show the user the commit hash and a one-line summary of what was pushed.
|
||||
|
||||
## Safety rules
|
||||
|
||||
- Never force-push (`--force` / `--force-with-lease`) without explicit user approval
|
||||
- Never commit files matching `.gitignore` patterns
|
||||
- Never commit `.env`, credentials, or secrets — warn the user if any are staged
|
||||
- If there are no changes to commit, tell the user and stop
|
||||
- If the user provided arguments after `/ship`, use them as the commit message summary instead of drafting one
|
||||
27
.gitignore
vendored
Normal file
27
.gitignore
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# Build output
|
||||
bin/
|
||||
obj/
|
||||
|
||||
# Visual Studio
|
||||
.vs/
|
||||
*.user
|
||||
*.suo
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# NuGet
|
||||
*.nupkg
|
||||
**/[Pp]ackages/*
|
||||
!**/[Pp]ackages/build/
|
||||
|
||||
# OS
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
.DS_Store
|
||||
|
||||
# Archived .NET Framework 4.8 source (recoverable from initial commit)
|
||||
old_source/
|
||||
|
||||
# Project-local Claude Code settings (personal permissions, not shared)
|
||||
.claude/settings.local.json
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,350 +0,0 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"WorkspaceRootPath": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\",
|
||||
"Documents": [
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\models\\canbusparameter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:models\\canbusparameter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\mainviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\mainviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\infrastructure\\pcan\\pcanadapter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:infrastructure\\pcan\\pcanadapter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\benchservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\benchservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\testpanelviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\testpanelviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\testsectionviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\testsectionviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\pumpidentificationview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\pumpidentificationview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\benchparamconfigview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\benchparamconfigview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\dfimanageview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\dfimanageview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testpanelview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testpanelview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\statusdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\statusdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\resultdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\resultdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|solutionrelative:obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\pumpidentificationviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\pumpidentificationviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testdisplayview.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testdisplayview.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\operationvalueviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\operationvalueviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\kwpservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\kwpservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\infrastructure\\kwp\\ftdiinterface.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:infrastructure\\kwp\\ftdiinterface.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\configurationservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\configurationservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
}
|
||||
],
|
||||
"DocumentGroupContainers": [
|
||||
{
|
||||
"Orientation": 0,
|
||||
"VerticalTabListWidth": 256,
|
||||
"DocumentGroups": [
|
||||
{
|
||||
"DockedWidth": 200,
|
||||
"SelectedChildIndex": 2,
|
||||
"Children": [
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 19,
|
||||
"Title": "FtdiInterface.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"RelativeDocumentMoniker": "Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"RelativeToolTip": "Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"ViewState": "AgIAACYAAAAAAAAAAAAiwDcAAAAMAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T11:20:25.336Z",
|
||||
"IsPinned": true
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 2,
|
||||
"Title": "PcanAdapter.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"RelativeDocumentMoniker": "Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"RelativeToolTip": "Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"ViewState": "AgIAAEYBAAAAAAAAAAAqwFgBAAAkAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:25:21.132Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 0,
|
||||
"Title": "CanBusParameter.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Models\\CanBusParameter.cs",
|
||||
"RelativeDocumentMoniker": "Models\\CanBusParameter.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Models\\CanBusParameter.cs",
|
||||
"RelativeToolTip": "Models\\CanBusParameter.cs",
|
||||
"ViewState": "AgIAAIQAAAAAAAAAAAAqwJcAAAAVAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:25:19.99Z",
|
||||
"EditorCaption": ""
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 3,
|
||||
"Title": "BenchService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\BenchService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\BenchService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\BenchService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\BenchService.cs",
|
||||
"ViewState": "AgIAAGUAAAAAAAAAAAA2wHoAAAAnAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:11:19.037Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 4,
|
||||
"Title": "MainWindow.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\MainWindow.xaml",
|
||||
"RelativeDocumentMoniker": "MainWindow.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\MainWindow.xaml",
|
||||
"RelativeToolTip": "MainWindow.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T10:31:00.196Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 7,
|
||||
"Title": "TestDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:32:52.908Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 1,
|
||||
"Title": "MainViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\MainViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\MainViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\MainViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\MainViewModel.cs",
|
||||
"ViewState": "AgIAALcBAAAAAAAAAAAAAL4BAAAQAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:31:37.464Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 8,
|
||||
"Title": "PumpIdentificationView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:35.767Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 5,
|
||||
"Title": "TestPanelViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestPanelViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\TestPanelViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestPanelViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\TestPanelViewModel.cs",
|
||||
"ViewState": "AgIAAEkAAAAAAAAAAAAAAGIAAABIAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:34:39.971Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 9,
|
||||
"Title": "BenchParamConfigView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:44.481Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 6,
|
||||
"Title": "TestSectionViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestSectionViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\TestSectionViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestSectionViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\TestSectionViewModel.cs",
|
||||
"ViewState": "AgIAAHwAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:32:45.953Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 10,
|
||||
"Title": "DfiManageView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\DfiManageView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\DfiManageView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\DfiManageView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\DfiManageView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T11:58:47.458Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 11,
|
||||
"Title": "TestPanelView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestPanelView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestPanelView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestPanelView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestPanelView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:32:51.184Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 12,
|
||||
"Title": "StatusDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:40.103Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 13,
|
||||
"Title": "ResultDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:39.063Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 14,
|
||||
"Title": "PumpIdentificationView.g.i.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"RelativeDocumentMoniker": "obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"RelativeToolTip": "obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"ViewState": "AgIAAB4AAAAAAAAAAAArwDgAAABNAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:36:23.182Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 15,
|
||||
"Title": "PumpIdentificationViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:35:48.506Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 16,
|
||||
"Title": "TestDisplayView.xaml.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:34:28.028Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 17,
|
||||
"Title": "OperationValueViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\OperationValueViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\OperationValueViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\OperationValueViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\OperationValueViewModel.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:33:10.718Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 20,
|
||||
"Title": "ConfigurationService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\ConfigurationService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\ConfigurationService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\ConfigurationService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\ConfigurationService.cs",
|
||||
"ViewState": "AgIAABQBAAAAAAAAAAAqwCsBAAAMAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:35:03.253Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 18,
|
||||
"Title": "KwpService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\KwpService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\KwpService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\KwpService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\KwpService.cs",
|
||||
"ViewState": "AgIAAFsBAAAAAAAAAAAIwGoBAAASAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:40:31.376Z"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,351 +0,0 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"WorkspaceRootPath": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\",
|
||||
"Documents": [
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\models\\canbusparameter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:models\\canbusparameter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\mainviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\mainviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\infrastructure\\pcan\\pcanadapter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:infrastructure\\pcan\\pcanadapter.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\benchservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\benchservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:mainwindow.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\testpanelviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\testpanelviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\testsectionviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\testsectionviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\pumpidentificationview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\pumpidentificationview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\benchparamconfigview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\benchparamconfigview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\dfimanageview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\dfimanageview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testpanelview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testpanelview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\statusdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\statusdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\resultdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\resultdisplayview.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|solutionrelative:obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\pumpidentificationviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\pumpidentificationviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\views\\usercontrols\\testdisplayview.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:views\\usercontrols\\testdisplayview.xaml.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\viewmodels\\operationvalueviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:viewmodels\\operationvalueviewmodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\kwpservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\kwpservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\infrastructure\\kwp\\ftdiinterface.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:infrastructure\\kwp\\ftdiinterface.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
},
|
||||
{
|
||||
"AbsoluteMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|c:\\users\\herli\\documents\\claudeprojects\\hc_aptbs\\services\\impl\\configurationservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
||||
"RelativeMoniker": "D:0:0:{E8505196-99EC-46A0-0C98-05174CAA0D1F}|HC_APTBS.csproj|solutionrelative:services\\impl\\configurationservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
||||
}
|
||||
],
|
||||
"DocumentGroupContainers": [
|
||||
{
|
||||
"Orientation": 0,
|
||||
"VerticalTabListWidth": 256,
|
||||
"DocumentGroups": [
|
||||
{
|
||||
"DockedWidth": 200,
|
||||
"SelectedChildIndex": 2,
|
||||
"Children": [
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 19,
|
||||
"Title": "FtdiInterface.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"RelativeDocumentMoniker": "Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"RelativeToolTip": "Infrastructure\\Kwp\\FtdiInterface.cs",
|
||||
"ViewState": "AgIAACYAAAAAAAAAAAAiwDcAAAAMAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T11:20:25.336Z",
|
||||
"IsPinned": true
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 2,
|
||||
"Title": "PcanAdapter.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"RelativeDocumentMoniker": "Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"RelativeToolTip": "Infrastructure\\Pcan\\PcanAdapter.cs",
|
||||
"ViewState": "AgIAAEYBAAAAAAAAAAAqwFgBAAAkAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:25:21.132Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 0,
|
||||
"Title": "CanBusParameter.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Models\\CanBusParameter.cs",
|
||||
"RelativeDocumentMoniker": "Models\\CanBusParameter.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Models\\CanBusParameter.cs",
|
||||
"RelativeToolTip": "Models\\CanBusParameter.cs",
|
||||
"ViewState": "AgIAAIQAAAAAAAAAAAAqwJ0AAAAMAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:25:19.99Z",
|
||||
"EditorCaption": ""
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 3,
|
||||
"Title": "BenchService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\BenchService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\BenchService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\BenchService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\BenchService.cs",
|
||||
"ViewState": "AgIAAGUAAAAAAAAAAAA2wHoAAAAnAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-11T09:11:19.037Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 4,
|
||||
"Title": "MainWindow.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\MainWindow.xaml",
|
||||
"RelativeDocumentMoniker": "MainWindow.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\MainWindow.xaml",
|
||||
"RelativeToolTip": "MainWindow.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T10:31:00.196Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 7,
|
||||
"Title": "TestDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:32:52.908Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 1,
|
||||
"Title": "MainViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\MainViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\MainViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\MainViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\MainViewModel.cs",
|
||||
"ViewState": "AgIAALcBAAAAAAAAAAAAAL4BAAAQAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:31:37.464Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 8,
|
||||
"Title": "PumpIdentificationView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\PumpIdentificationView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:35.767Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 5,
|
||||
"Title": "TestPanelViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestPanelViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\TestPanelViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestPanelViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\TestPanelViewModel.cs",
|
||||
"ViewState": "AgIAAEkAAAAAAAAAAAAAAGIAAABIAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:34:39.971Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 9,
|
||||
"Title": "BenchParamConfigView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\BenchParamConfigView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:44.481Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 6,
|
||||
"Title": "TestSectionViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestSectionViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\TestSectionViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\TestSectionViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\TestSectionViewModel.cs",
|
||||
"ViewState": "AgIAAHwAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:32:45.953Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 10,
|
||||
"Title": "DfiManageView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\DfiManageView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\DfiManageView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\DfiManageView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\DfiManageView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T11:58:47.458Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 11,
|
||||
"Title": "TestPanelView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestPanelView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestPanelView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestPanelView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestPanelView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:32:51.184Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 12,
|
||||
"Title": "StatusDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\StatusDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:40.103Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 13,
|
||||
"Title": "ResultDisplayView.xaml",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"RelativeToolTip": "Views\\UserControls\\ResultDisplayView.xaml",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
|
||||
"WhenOpened": "2026-04-10T17:36:39.063Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 14,
|
||||
"Title": "PumpIdentificationView.g.i.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"RelativeDocumentMoniker": "obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"RelativeToolTip": "obj\\Debug\\net10.0-windows\\Views\\UserControls\\PumpIdentificationView.g.i.cs",
|
||||
"ViewState": "AgIAAB4AAAAAAAAAAAArwDgAAABNAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:36:23.182Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 15,
|
||||
"Title": "PumpIdentificationViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\PumpIdentificationViewModel.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:35:48.506Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 16,
|
||||
"Title": "TestDisplayView.xaml.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"RelativeDocumentMoniker": "Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"RelativeToolTip": "Views\\UserControls\\TestDisplayView.xaml.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:34:28.028Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 17,
|
||||
"Title": "OperationValueViewModel.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\OperationValueViewModel.cs",
|
||||
"RelativeDocumentMoniker": "ViewModels\\OperationValueViewModel.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\ViewModels\\OperationValueViewModel.cs",
|
||||
"RelativeToolTip": "ViewModels\\OperationValueViewModel.cs",
|
||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T17:33:10.718Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 20,
|
||||
"Title": "ConfigurationService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\ConfigurationService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\ConfigurationService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\ConfigurationService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\ConfigurationService.cs",
|
||||
"ViewState": "AgIAABQBAAAAAAAAAAAqwCsBAAAMAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:35:03.253Z"
|
||||
},
|
||||
{
|
||||
"$type": "Document",
|
||||
"DocumentIndex": 18,
|
||||
"Title": "KwpService.cs",
|
||||
"DocumentMoniker": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\KwpService.cs",
|
||||
"RelativeDocumentMoniker": "Services\\Impl\\KwpService.cs",
|
||||
"ToolTip": "C:\\Users\\herli\\Documents\\ClaudeProjects\\HC_APTBS\\Services\\Impl\\KwpService.cs",
|
||||
"RelativeToolTip": "Services\\Impl\\KwpService.cs",
|
||||
"ViewState": "AgIAAFsBAAAAAAAAAAAIwGoBAAASAAAAAAAAAA==",
|
||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
||||
"WhenOpened": "2026-04-10T10:40:31.376Z",
|
||||
"EditorCaption": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"ExpandedNodes": [
|
||||
"",
|
||||
"\\old_source",
|
||||
"\\Views"
|
||||
],
|
||||
"SelectedNode": "\\HC_APTBS.slnx",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
||||
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
49
README.md
Normal file
49
README.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# HC_APTBS
|
||||
|
||||
WPF desktop application for controlling a VP44 diesel injection pump test bench.
|
||||
|
||||
## Features
|
||||
|
||||
- **CAN bus communication** — reads/writes bench sensors (temperature, RPM, flow) via PCAN-Basic at 500 kbps
|
||||
- **K-Line / KWP2000** — communicates with the VP44 pump ECU via FTDI USB adapter at 9600 bps
|
||||
- **Automated test sequences** — runs multi-phase tests with PID temperature control
|
||||
- **PDF reports** — generates test result reports with QuestPDF
|
||||
|
||||
## Requirements
|
||||
|
||||
- Windows 10/11 (x64)
|
||||
- [.NET 10 SDK](https://dotnet.microsoft.com/) (version pinned in `global.json`)
|
||||
- Hardware: PCAN-USB adapter, FTDI USB-to-serial adapter
|
||||
|
||||
## Build
|
||||
|
||||
```bash
|
||||
dotnet build -r win-x64
|
||||
```
|
||||
|
||||
Native DLLs (`PCANBasic.dll`, `ftd2xx.dll`) are bundled in `Resources/Native/` and copied to output automatically.
|
||||
|
||||
## Stack
|
||||
|
||||
| Layer | Technology |
|
||||
|-------|-----------|
|
||||
| UI | WPF / XAML |
|
||||
| MVVM | CommunityToolkit.Mvvm |
|
||||
| DI | Microsoft.Extensions.DependencyInjection |
|
||||
| Charts | LiveCharts2 (SkiaSharp) |
|
||||
| PDF | QuestPDF 2025.3.2 |
|
||||
| CAN | PCAN-Basic (P/Invoke) |
|
||||
| K-Line | FTDI D2XX (P/Invoke) |
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
Infrastructure/
|
||||
Pcan/ — CAN bus adapter, OEM legitimation, sensor decoding
|
||||
Kwp/ — FTDI interface, KWP/KW1281 protocol, 5-baud slow-init
|
||||
Logging/ — Daily rotating log files
|
||||
Services/Impl/ — Test orchestration, KWP operations, config persistence, PDF
|
||||
ViewModels/ — MVVM view models (ObservableProperty / RelayCommand)
|
||||
Views/ — Pure XAML views
|
||||
Models/ — Domain models and test definitions
|
||||
```
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net10.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "10.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "10.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"MVVMTOOLKIT_ENABLE_INOTIFYPROPERTYCHANGING_SUPPORT": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
|
||||
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,93 +0,0 @@
|
||||
Copyright (c) 2010-2014 by tyPoland Lukasz Dziedzic (team@latofonts.com) with Reserved Font Name "Lato"
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user