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