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