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.
18 lines
161 B
Plaintext
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
|