From 3c555b9a388ed0388127c00fe7077e670cc483c2 Mon Sep 17 00:00:00 2001 From: Reuben Bond Date: Wed, 3 Jul 2024 09:10:41 -0700 Subject: [PATCH] Comment out Aspire AppHost enablement property --- .../DashboradToy.AppHost/DashboardToy.AppHost.csproj | 4 +++- playground/DashboardToy/DashboradToy.AppHost/Program.cs | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/playground/DashboardToy/DashboradToy.AppHost/DashboardToy.AppHost.csproj b/playground/DashboardToy/DashboradToy.AppHost/DashboardToy.AppHost.csproj index 4fa3be891b0..b00b2d429cf 100644 --- a/playground/DashboardToy/DashboradToy.AppHost/DashboardToy.AppHost.csproj +++ b/playground/DashboardToy/DashboradToy.AppHost/DashboardToy.AppHost.csproj @@ -5,7 +5,9 @@ net8.0 enable enable - true + + + 6a521b87-2bf9-4af8-b7c7-4947536e1d50 diff --git a/playground/DashboardToy/DashboradToy.AppHost/Program.cs b/playground/DashboardToy/DashboradToy.AppHost/Program.cs index b322f314bdc..22ba50d04b4 100644 --- a/playground/DashboardToy/DashboradToy.AppHost/Program.cs +++ b/playground/DashboardToy/DashboradToy.AppHost/Program.cs @@ -6,8 +6,11 @@ var orleans = builder.AddOrleans("cluster") .WithClustering(redis); +/* +// Comment this out once Aspire no longer requires a 'workload' to build. builder.AddProject("frontend") .WithReference(orleans) .WithReplicas(5); +*/ builder.Build().Run();