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