7 references to ProjectLaunchMode
Aspire.Hosting (6)
Dcp\DcpExecutor.cs (4)
975
if (_configuration[KnownConfigNames.ExtensionDebugRunMode] is
ProjectLaunchMode
.Debug)
977
projectLaunchConfiguration.Mode =
ProjectLaunchMode
.Debug;
1034
if (_configuration[KnownConfigNames.ExtensionDebugRunMode] is
ProjectLaunchMode
.Debug)
1036
projectLaunchConfiguration.Mode =
ProjectLaunchMode
.Debug;
Dcp\Model\Executable.cs (2)
282
public string Mode { get; set; } = System.Diagnostics.Debugger.IsAttached ?
ProjectLaunchMode
.Debug :
ProjectLaunchMode
.NoDebug;
Aspire.Hosting.Tests (1)
Dcp\DcpExecutorTests.cs (1)
1577
Assert.Equal(
ProjectLaunchMode
.Debug, config1.Mode);