Skip to content

Commit

Permalink
Comment out Aspire AppHost enablement property
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenBond committed Jul 3, 2024
1 parent 5d031f7 commit 3c555b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>

<!-- Uncomment this once Aspire no longer requires a 'dotnet workload install aspire' to build -->
<!--<IsAspireHost>true</IsAspireHost>-->
<UserSecretsId>6a521b87-2bf9-4af8-b7c7-4947536e1d50</UserSecretsId>
</PropertyGroup>

Expand Down
3 changes: 3 additions & 0 deletions playground/DashboardToy/DashboradToy.AppHost/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<DashboardToy_Frontend>("frontend")
.WithReference(orleans)
.WithReplicas(5);
*/

builder.Build().Run();

0 comments on commit 3c555b9

Please sign in to comment.