3 writes to LaunchProfile
Aspire.Hosting (1)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (1)
48projectLaunchConfiguration.LaunchProfile = namedLaunchProfile.Name;
Aspire.Hosting.Tests (2)
Dcp\DcpExecutorTests.cs (1)
7486return new ProjectLaunchConfiguration { ProjectPath = "AsyncProducerPath", Mode = mode, LaunchProfile = "async-profile" };
DebugSupportExtensionsTests.cs (1)
153LaunchProfile = "https"
17 references to LaunchProfile
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectResourceTests.cs (2)
590Assert.Equal(string.Empty, launchConfig.LaunchProfile); 627Assert.Equal("http", launchConfig.LaunchProfile);
Aspire.Hosting.Tests (15)
Dcp\DcpExecutorTests.cs (12)
4385Assert.Equal("http", plc.LaunchProfile); 4497Assert.Equal(string.Empty, plc.LaunchProfile); 4534Assert.Equal("Foo", plc.LaunchProfile); 4535Assert.NotEqual("DoesNotExistProfile", plc.LaunchProfile); 4568Assert.Equal("http", plc.LaunchProfile); 4599Assert.Equal("http", plc.LaunchProfile); // explicit wins 4630Assert.Equal(string.Empty, plc.LaunchProfile); 4660Assert.Equal(string.Empty, plc.LaunchProfile); // nothing selected 4689Assert.Equal("Zed", plc.LaunchProfile); // first inserted wins 7510Assert.Equal("async-profile", plc.LaunchProfile); 7905Assert.Equal("Aspire_TestFunction", launchConfigs[0].LaunchProfile); 7979Assert.Equal("http", plc.LaunchProfile);
DebugSupportExtensionsTests.cs (3)
108Assert.Equal("http", launchConfiguration.LaunchProfile); 128Assert.Equal(string.Empty, launchConfiguration.LaunchProfile); 160Assert.Equal("https", launchConfiguration.LaunchProfile);