14 references to WithDebugSupport
Aspire.Hosting (3)
ProjectResourceBuilderExtensions.cs (3)
248
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectMetadata.ProjectPath, Mode = mode }, "project")
293
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectPath, Mode = mode }, "project")
374
.
WithDebugSupport
(mode => new ProjectLaunchConfiguration { ProjectPath = projectMetadata.ProjectPath, Mode = mode }, "project")
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
941
builder.
WithDebugSupport
(
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (8)
1659
builder.AddResource(debuggableExecutable).
WithDebugSupport
(mode => new ExecutableLaunchConfiguration("test") { Mode = mode }, "test");
1714
builder.AddResource(executable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1750
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1792
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1828
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1864
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1906
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
1948
builder.AddResource(debuggableExecutable).
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("test"), "test");
ExecutableResourceBuilderExtensionTests.cs (2)
81
.
WithDebugSupport
(_ => launchConfig, "ms-python.python");
99
.
WithDebugSupport
(_ => new ExecutableLaunchConfiguration("python"), "ms-python.python");