28 references to Project
Aspire.Hosting (12)
ApplicationModel\DebugSupportExtensions.cs (2)
39/// configuration type is <see cref="KnownLaunchConfigurationTypes.Project"/> is treated as implicitly 64return supportsDebuggingAnnotation.LaunchConfigurationType == KnownLaunchConfigurationTypes.Project;
ApplicationModel\ExecutableLaunchConfiguration.cs (3)
60type is Project or ProjectWithExternalBuild; 77/// <param name="type">The launch configuration type identifier, for example <see cref="KnownLaunchConfigurationTypes.Project"/>.</param> 119public sealed class ProjectLaunchConfiguration() : ExecutableLaunchConfiguration(KnownLaunchConfigurationTypes.Project)
ApplicationModel\ProjectLaunchConfigurationFactory.cs (3)
19$"Resource '{resource.Name}' cannot produce a \"{KnownLaunchConfigurationTypes.Project}\" launch configuration because it has no project metadata. " + 20$"The \"{KnownLaunchConfigurationTypes.Project}\" launch configuration type is reserved for .NET project resources; use a resource that carries {nameof(IProjectMetadata)} or a different launch configuration type."); 57: KnownLaunchConfigurationTypes.Project;
Dcp\ExecutableLaunchPolicy.cs (2)
61GetLaunchMode(KnownLaunchConfigurationTypes.Project), 90debugSupport?.LaunchConfigurationType is not null and not KnownLaunchConfigurationTypes.Project)
SupportsDebuggingAnnotation.cs (2)
31/// Gets the launch configuration type identifier, for example <see cref="KnownLaunchConfigurationTypes.Project"/>. 39/// capability list), <see cref="KnownLaunchConfigurationTypes.Project"/> is treated as implicitly
Aspire.Hosting.Dotnet (1)
DotnetProjectHostingExtensions.cs (1)
278?? KnownLaunchConfigurationTypes.Project;
Aspire.Hosting.Dotnet.Tests (5)
DotnetProjectBuildCoordinatorTests.cs (4)
95SupportedLaunchConfigurations = [KnownLaunchConfigurationTypes.Project] 105KnownLaunchConfigurationTypes.Project, 152KnownLaunchConfigurationTypes.Project, 176KnownLaunchConfigurationTypes.Project,
DotnetProjectResourceTests.cs (1)
748SupportedLaunchConfigurations = [KnownLaunchConfigurationTypes.Project]
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (5)
6615Assert.Equal(KnownLaunchConfigurationTypes.Project, projectLaunchConfiguration.GetProperty("type").GetString()); 6759KnownLaunchConfigurationTypes.Project, 7467Assert.Equal(KnownLaunchConfigurationTypes.Project, launchConfiguration.Type); 7488KnownLaunchConfigurationTypes.Project); 7956.WithDebugSupport(mode => ProjectLaunchConfigurationFactory.Create(resource, mode), KnownLaunchConfigurationTypes.Project);
Dcp\ExecutableLaunchPlanTests.cs (1)
160owningLaunchConfigurationType: KnownLaunchConfigurationTypes.Project,
DebugSupportExtensionsTests.cs (4)
139Assert.Equal(KnownLaunchConfigurationTypes.Project, debugSupport.LaunchConfigurationType); 154}, KnownLaunchConfigurationTypes.Project); 309KnownLaunchConfigurationTypes.Project); 359Assert.Equal(KnownLaunchConfigurationTypes.Project, annotation.LaunchConfigurationType);