2 implementations of Name
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
36
public abstract string
Name
{ get; }
Aspire.Hosting.Tests (1)
Publishing\FakeContainerRuntime.cs (1)
15
public string
Name
=> "fake-runtime";
8 references to Name
Aspire.Hosting (8)
Publishing\ResourceContainerImageManager.cs (8)
213
logger.LogDebug("Checking {ContainerRuntimeName} health", ContainerRuntime.
Name
);
219
logger.LogError("Container runtime '{ContainerRuntimeName}' is not running or is unhealthy. Cannot build container images.", ContainerRuntime.
Name
);
220
throw new InvalidOperationException($"Container runtime '{ContainerRuntime.
Name
}' is not running or is unhealthy.");
223
logger.LogDebug("{ContainerRuntimeName} is healthy", ContainerRuntime.
Name
);
244
logger.LogDebug("Checking {ContainerRuntimeName} health", ContainerRuntime.
Name
);
250
logger.LogError("Container runtime '{ContainerRuntimeName}' is not running or is unhealthy. Cannot build container image.", ContainerRuntime.
Name
);
251
throw new InvalidOperationException($"Container runtime '{ContainerRuntime.
Name
}' is not running or is unhealthy.");
254
logger.LogDebug("{ContainerRuntimeName} is healthy", ContainerRuntime.
Name
);