We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9216635 commit f7521a4Copy full SHA for f7521a4
BlogWebApp/Aspire/Blog.Aspire/Blog.Aspire.AppHost/AppHost.cs
@@ -5,6 +5,13 @@
5
var apiServices = builder.AddProject<Projects.Blog_Web>("BlogWeb");
6
//.WithHttpHealthCheck("/health");
7
8
-
+builder.AddProject<Projects.BlogRazor>("BlogRazor")
9
+ //.WithLaunchProfile("ShopRazor")
10
+ .WithExternalHttpEndpoints();
11
+//.WithHttpHealthCheck("/health");
12
+//.WithReference(cache)
13
+//.WaitFor(cache);
14
+//.WithReference(apiService)
15
+//.WaitFor(apiService);
16
17
builder.Build().Run();
0 commit comments