14 instantiations of LaunchProfile
Aspire.Hosting.Azure.Tests (8)
AzureFunctionsTests.cs (7)
669["funcapp"] = new() 686["funcapp"] = new() 703["funcapp"] = new() 720["funcapp"] = new() 736["funcapp"] = new() 753["funcapp"] = new() 770["funcapp"] = new()
PublicApiTests\FunctionsPublicApiTests.cs (1)
105["funcapp"] = new()
Aspire.Hosting.Tests (6)
KestrelConfigTests.cs (1)
387["OnlyHttp"] = new()
ProjectResourceTests.cs (3)
688["http"] = new() 709["https"] = new() 730["https"] = new()
WithUrlsTests.cs (2)
632["http"] = new() 638["custom"] = new()
23 references to LaunchProfile
Aspire.Hosting (7)
LaunchSettings.cs (1)
17public Dictionary<string, LaunchProfile> Profiles { get; set; } = [];
ProjectResourceBuilderExtensions.cs (1)
342var launchProfile = effectiveLaunchProfile?.LaunchProfile;
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (5)
39var launchProfile = projectResource.GetLaunchProfile(launchProfileName, throwIfNotFound); 48internal static LaunchProfile? GetLaunchProfile(this ProjectResource projectResource, string launchProfileName, bool throwIfNotFound = false) 56var found = profiles.TryGetValue(launchProfileName, out var launchProfile); 145if (!launchSettings.Profiles.TryGetValue(appHostDefaultLaunchProfileName, out var launchProfile) || launchProfile is null) 189internal sealed record class NamedLaunchProfile(string Name, LaunchProfile LaunchProfile);
Aspire.Hosting.Azure.Functions (5)
src\Shared\LaunchProfiles\LaunchProfileExtensions.cs (5)
39var launchProfile = projectResource.GetLaunchProfile(launchProfileName, throwIfNotFound); 48internal static LaunchProfile? GetLaunchProfile(this ProjectResource projectResource, string launchProfileName, bool throwIfNotFound = false) 56var found = profiles.TryGetValue(launchProfileName, out var launchProfile); 145if (!launchSettings.Profiles.TryGetValue(appHostDefaultLaunchProfileName, out var launchProfile) || launchProfile is null) 189internal sealed record class NamedLaunchProfile(string Name, LaunchProfile LaunchProfile);
Aspire.Hosting.Azure.Tests (8)
AzureFunctionsTests.cs (7)
667Profiles = new Dictionary<string, LaunchProfile> 684Profiles = new Dictionary<string, LaunchProfile> 701Profiles = new Dictionary<string, LaunchProfile> 718Profiles = new Dictionary<string, LaunchProfile> 734Profiles = new Dictionary<string, LaunchProfile> 751Profiles = new Dictionary<string, LaunchProfile> 768Profiles = new Dictionary<string, LaunchProfile>
PublicApiTests\FunctionsPublicApiTests.cs (1)
103Profiles = new Dictionary<string, LaunchProfile>
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
277LaunchProfile? launchProfile;
Aspire.Hosting.Tests (2)
ProjectResourceTests.cs (1)
672protected Dictionary<string, LaunchProfile>? Profiles { get; set; } = new();
WithUrlsTests.cs (1)
630Profiles = new Dictionary<string, LaunchProfile>