add aspire for otel

This commit is contained in:
Matt Parker
2025-09-29 19:07:38 +10:00
parent b7029e7dce
commit e0ddcc55f2
16 changed files with 358 additions and 1 deletions

13
tools/AppHost/AppHost.cs Normal file
View File

@@ -0,0 +1,13 @@
using AppHost;
using Projects;
var builder = DistributedApplication.CreateBuilder(args);
//var photino = builder.AddProject<SharpIDE_Photino>("photino");
builder.AddGodot("../../src/SharpIDE.Godot/SharpIDE.Godot.csproj", "sharpide-godot")
.WithOtlpExporter();
var appHost = builder.Build();
await appHost.RunAsync();