4 writes to Mode
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.Tests (1)
Dcp\DcpExecutorTests.cs (1)
1658
builder.AddResource(debuggableExecutable).WithDebugSupport(mode => new ExecutableLaunchConfiguration("test") {
Mode
= mode }, "test");
3 references to Mode
Aspire.Hosting.Tests (3)
Dcp\DcpExecutorTests.cs (1)
1697
Assert.Equal(ExecutableLaunchMode.Debug, config1.
Mode
);
ExecutableResourceBuilderExtensionTests.cs (2)
89
Assert.Equal(launchConfig.
Mode
, annotations.Single().
Mode
);