13 references to WithDebugSupport
Aspire.Hosting (2)
ProjectResourceBuilderExtensions.cs (2)
289.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = projectPath, Mode = mode }, "ms-dotnettools.csharp") 370.WithDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = projectMetadata.ProjectPath, Mode = mode }, "ms-dotnettools.csharp")
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
895builder.WithDebugSupport(
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1554builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test"); 1609builder.AddResource(executable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1645builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1687builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1723builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1759builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1801builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1843builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
80.WithDebugSupport(_ => launchConfig, "ms-python.python"); 98.WithDebugSupport(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");