Files
myfirst-addon/host/MyFirstAddon.Host.csproj
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

12 lines
315 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>MyFirstAddon.Host</AssemblyName>
<RootNamespace>MyFirstAddon.Host</RootNamespace>
</PropertyGroup>
</Project>