14 references to WithDebugSupport
Aspire.Hosting (3)
ProjectResourceBuilderExtensions.cs (3)
247
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectMetadata.ProjectPath, Mode = mode }, "project")
292
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectPath, Mode = mode }, "project")
373
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectMetadata.ProjectPath, Mode = mode }, "project")
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
967
builder.
WithDebugSupport
(
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1658
builder.AddResource(debuggableExecutable).
WithDebugSupport
(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test");
1713
builder.AddResource(executable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1749
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1791
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1827
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1863
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1905
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1947
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");