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)
967builder.WithDebugSupport(
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1618builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test"); 1673builder.AddResource(executable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1709builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1751builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1787builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1823builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1865builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test"); 1907builder.AddResource(debuggableExecutable).WithDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
80.WithDebugSupport(_ => launchConfig, "ms-python.python"); 98.WithDebugSupport(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");