3 writes to LaunchProfile
Aspire.Hosting (1)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
39projectLaunchConfiguration.LaunchProfile = namedLaunchProfile.Name;
Aspire.Hosting.Tests (2)
Dcp\DcpExecutorTests.cs (1)
7296return new ProjectLaunchConfiguration { ProjectPath = "AsyncProducerPath", Mode = mode, LaunchProfile = "async-profile" };
DebugSupportExtensionsTests.cs (1)
149LaunchProfile = "https"
17 references to LaunchProfile
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectResourceTests.cs (2)
555Assert.Equal(string.Empty, launchConfig.LaunchProfile); 588Assert.Equal("http", launchConfig.LaunchProfile);
Aspire.Hosting.Tests (15)
Dcp\DcpExecutorTests.cs (12)
4195Assert.Equal("http", plc.LaunchProfile); 4307Assert.Equal(string.Empty, plc.LaunchProfile); 4344Assert.Equal("Foo", plc.LaunchProfile); 4345Assert.NotEqual("DoesNotExistProfile", plc.LaunchProfile); 4378Assert.Equal("http", plc.LaunchProfile); 4409Assert.Equal("http", plc.LaunchProfile); // explicit wins 4440Assert.Equal(string.Empty, plc.LaunchProfile); 4470Assert.Equal(string.Empty, plc.LaunchProfile); // nothing selected 4499Assert.Equal("Zed", plc.LaunchProfile); // first inserted wins 7320Assert.Equal("async-profile", plc.LaunchProfile); 7715Assert.Equal("Aspire_TestFunction", launchConfigs[0].LaunchProfile); 7789Assert.Equal("http", plc.LaunchProfile);
DebugSupportExtensionsTests.cs (3)
108Assert.Equal("http", launchConfiguration.LaunchProfile); 124Assert.Equal(string.Empty, launchConfiguration.LaunchProfile); 156Assert.Equal("https", launchConfiguration.LaunchProfile);