9 instantiations of DeployingCallbackAnnotation
Aspire.Hosting.Tests (9)
PublishingTests.cs (9)
59
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
95
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
130
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
155
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
162
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
187
.WithAnnotation(new
DeployingCallbackAnnotation
(context =>
262
.WithAnnotation(new
DeployingCallbackAnnotation
(_ => throw new InvalidOperationException("Deploy failed!")));
275
.WithAnnotation(new
DeployingCallbackAnnotation
(_ => { called = "first"; return Task.CompletedTask; }))
276
.WithAnnotation(new
DeployingCallbackAnnotation
(_ => { called = "second"; return Task.CompletedTask; }));
3 references to DeployingCallbackAnnotation
Aspire.Hosting (3)
ApplicationModel\DeployingCallbackAnnotation.cs (1)
12
/// Initializes a new instance of the <see cref="
DeployingCallbackAnnotation
"/> class.
Publishing\DeployingContext.cs (2)
68
if (resource.TryGetLastAnnotation<
DeployingCallbackAnnotation
>(out
var
annotation))