Files
logikonline e79fd3f281 feat: add .NET host process integration
Implements native host process support with .NET backend:
- Add .NET host project with HTTP endpoints (health check, hello world)
- Configure multi-platform host executables in addon.json
- Add host communication methods in main process
- Create host demo tab in UI
- Add .gitignore for .NET build artifacts

The host process runs on a dynamic port and communicates via HTTP with the main addon process.
2026-01-18 14:48:43 -05:00

18 lines
161 B
Plaintext

# .NET build outputs
host/bin/
host/obj/
host/win-x64/
host/linux-x64/
host/osx-x64/
host/osx-arm64/
# IDE
.vs/
.vscode/
*.user
*.suo
# OS
.DS_Store
Thumbs.db