7 references to WithVSCodeDebugSupport
Aspire.Hosting (1)
ProjectResourceBuilderExtensions.cs (1)
286.WithVSCodeDebugSupport(mode => new ProjectLaunchConfiguration { ProjectPath = projectPath, Mode = mode }, "ms-dotnettools.csharp")
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
151resourceBuilder.WithVSCodeDebugSupport(mode => new PythonLaunchConfiguration { ProgramPath = Path.Join(appDirectory, scriptPath), Mode = mode }, "ms-python.python", ctx =>
Aspire.Hosting.Tests (5)
Dcp\DcpExecutorTests.cs (3)
1543builder.AddResource(debuggableExecutable).WithVSCodeDebugSupport(mode => new ExecutableLaunchConfiguration("test_executable_type") { Mode = mode }, "test_executable"); 1593builder.AddResource(executable).WithVSCodeDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test_executable"); 1629builder.AddResource(debuggableExecutable).WithVSCodeDebugSupport(_ => new ExecutableLaunchConfiguration("test"), "test_executable");
ExecutableResourceBuilderExtensionTests.cs (2)
80.WithVSCodeDebugSupport(_ => launchConfig, "ms-python.python"); 98.WithVSCodeDebugSupport(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");