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)
895
builder.
WithDebugSupport
(
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1554
builder.AddResource(debuggableExecutable).
WithDebugSupport
(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test");
1609
builder.AddResource(executable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1645
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1687
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1723
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1759
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1801
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1843
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
80
.
WithDebugSupport
(_ => launchConfig, "ms-python.python");
98
.
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");