Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,12 @@
//#endif
//#endif

// Blazor WebAssembly Standalone project.
builder.AddProject("clientwebwasm", "../../Client/Boilerplate.Client.Web/Boilerplate.Client.Web.csproj");

if (builder.ExecutionContext.IsRunMode) // The following project is only added for testing purposes.
{
// Blazor WebAssembly Standalone project.
builder.AddProject("clientwebwasm", "../../Client/Boilerplate.Client.Web/Boilerplate.Client.Web.csproj")
.WithExplicitStart();

var mailpit = builder.AddMailPit("smtp") // For testing purposes only, in production, you would use a real SMTP server.
.WithDataVolume("mailpit");

Expand Down
Loading