Skip to content

Commit 42d0a90

Browse files
authored
Fix build output path in agents.md
Updated build output path to remove 'windows7.0' reference.
1 parent eaddd09 commit 42d0a90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

agents.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- **Language**: C#
77
- **Target**: Windows x64
88
- **Main Project**: `OpenpilotToolkit/OpenpilotToolkit.csproj`
9-
- **Build Output**: `OpenpilotToolkit/bin/{Configuration}/net10.0-windows7.0/win-x64/OpenpilotToolkit.exe`
9+
- **Build Output**: `OpenpilotToolkit/bin/{Configuration}/net10.0-windows/win-x64/OpenpilotToolkit.exe`
1010

1111
## Dependencies
1212

@@ -122,10 +122,10 @@ When modifying code, determine rebuild requirements:
122122
After build:
123123
```bash
124124
# Verify executable exists
125-
ls -lh OpenpilotToolkit/bin/Release/net10.0-windows7.0/win-x64/OpenpilotToolkit.exe
125+
ls -lh OpenpilotToolkit/bin/Release/net10.0-windows/win-x64/OpenpilotToolkit.exe
126126

127127
# Check file size (should be ~several MB)
128-
du -h OpenpilotToolkit/bin/Release/net10.0-windows7.0/win-x64/OpenpilotToolkit.exe
128+
du -h OpenpilotToolkit/bin/Release/net10.0-windows/win-x64/OpenpilotToolkit.exe
129129
```
130130

131131
## CI/CD Integration
@@ -157,7 +157,7 @@ steps:
157157

158158
### Output Structure
159159
```
160-
bin/{Configuration}/net10.0-windows7.0/win-x64/
160+
bin/{Configuration}/net10.0-windows/win-x64/
161161
├── OpenpilotToolkit.exe # Main executable
162162
├── OpenpilotToolkit.dll # Application DLL
163163
├── OpenpilotSdk.dll # SDK with generated Cap'n Proto types

0 commit comments

Comments
 (0)