You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe the problem.
We do have some desktop applications (wpf, winforms, ..), that get started along with the rest of the system, to provide some not-always-used functionality. For example, there is a wpf log viewer.
Aspire auto-starts all configured apps automatically, which is a little bit annoying.
Describe the solution you'd like
It would be very nice, to have a .WithManualStart() option for configured aspire components, to let the user start them manually if needed, like this:
Another option is to look at custom command calling Process.Start() - e.g. rather than having a log viewer application as it's own resource, it may make sense to add it as a resource command on the thing it's viewing logs for.
Is your feature request related to a problem? Please describe the problem.
We do have some desktop applications (wpf, winforms, ..), that get started along with the rest of the system, to provide some not-always-used functionality. For example, there is a wpf log viewer.
Aspire auto-starts all configured apps automatically, which is a little bit annoying.
Describe the solution you'd like
It would be very nice, to have a .WithManualStart() option for configured aspire components, to let the user start them manually if needed, like this:
builder.AddProject<Projects.Some_Wpf_App>("SomeWpfApp")
.WithManualStart()
The text was updated successfully, but these errors were encountered: