28 references to Project
Aspire.Hosting (12)
ApplicationModel\DebugSupportExtensions.cs (2)
39
/// configuration type is <see cref="KnownLaunchConfigurationTypes.
Project
"/> is treated as implicitly
64
return supportsDebuggingAnnotation.LaunchConfigurationType == KnownLaunchConfigurationTypes.
Project
;
ApplicationModel\ExecutableLaunchConfiguration.cs (3)
60
type is
Project
or ProjectWithExternalBuild;
77
/// <param name="type">The launch configuration type identifier, for example <see cref="KnownLaunchConfigurationTypes.
Project
"/>.</param>
119
public 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)
61
GetLaunchMode(KnownLaunchConfigurationTypes.
Project
),
90
debugSupport?.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)
95
SupportedLaunchConfigurations = [KnownLaunchConfigurationTypes.
Project
]
105
KnownLaunchConfigurationTypes.
Project
,
152
KnownLaunchConfigurationTypes.
Project
,
176
KnownLaunchConfigurationTypes.
Project
,
DotnetProjectResourceTests.cs (1)
748
SupportedLaunchConfigurations = [KnownLaunchConfigurationTypes.
Project
]
Aspire.Hosting.Tests (10)
Dcp\DcpExecutorTests.cs (5)
6615
Assert.Equal(KnownLaunchConfigurationTypes.
Project
, projectLaunchConfiguration.GetProperty("type").GetString());
6759
KnownLaunchConfigurationTypes.
Project
,
7467
Assert.Equal(KnownLaunchConfigurationTypes.
Project
, launchConfiguration.Type);
7488
KnownLaunchConfigurationTypes.
Project
);
7956
.WithDebugSupport(mode => ProjectLaunchConfigurationFactory.Create(resource, mode), KnownLaunchConfigurationTypes.
Project
);
Dcp\ExecutableLaunchPlanTests.cs (1)
160
owningLaunchConfigurationType: KnownLaunchConfigurationTypes.
Project
,
DebugSupportExtensionsTests.cs (4)
139
Assert.Equal(KnownLaunchConfigurationTypes.
Project
, debugSupport.LaunchConfigurationType);
154
}, KnownLaunchConfigurationTypes.
Project
);
309
KnownLaunchConfigurationTypes.
Project
);
359
Assert.Equal(KnownLaunchConfigurationTypes.
Project
, annotation.LaunchConfigurationType);