6 references to Debug
Aspire.Hosting (5)
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 (1)
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);