1 instantiation of SupportsDebuggingAnnotation
Aspire.Hosting (1)
SupportsDebuggingAnnotation.cs (1)
28return new SupportsDebuggingAnnotation(launchConfigurationType, (exe, mode) =>
10 references to SupportsDebuggingAnnotation
Aspire.Hosting (6)
Dcp\DcpExecutor.cs (2)
1261if (executable.TryGetLastAnnotation<SupportsDebuggingAnnotation>(out var supportsDebuggingAnnotation)
ResourceBuilderExtensions.cs (1)
2894return builder.WithAnnotation(SupportsDebuggingAnnotation.Create(launchConfigurationType, launchConfigurationProducer));
SupportsDebuggingAnnotation.cs (1)
26internal static SupportsDebuggingAnnotation Create<T>(string launchConfigurationType, Func<string, T> launchProfileProducer)
Utils\ExtensionUtils.cs (2)
19return builder.Resource.TryGetLastAnnotation<SupportsDebuggingAnnotation>(out var supportsDebuggingAnnotation)
Aspire.Hosting.Tests (4)
ExecutableResourceBuilderExtensionTests.cs (4)
82var annotation = executable.Resource.Annotations.OfType<SupportsDebuggingAnnotation>().SingleOrDefault(); 100var annotation = executable.Resource.Annotations.OfType<SupportsDebuggingAnnotation>().SingleOrDefault();