19 references to ContainerLifetime
Aspire.Hosting (15)
ApplicationModel\ContainerLifetimeAnnotation.cs (1)
42public required ContainerLifetime Lifetime { get; set; }
ApplicationModel\ResourceExtensions.cs (3)
1138ContainerLifetime.Session => Lifetime.Session, 1139ContainerLifetime.Persistent => Lifetime.Persistent, 1140_ => throw new InvalidOperationException($"Unknown container lifetime '{Enum.GetName(typeof(ContainerLifetime), containerLifetimeAnnotation.Lifetime)}'.")
ContainerResourceBuilderExtensions.cs (8)
566/// <param name="lifetime">The lifetime behavior of the container resource. The default behavior is <see cref="ContainerLifetime.Session"/>.</param> 575/// Marking a container resource to have a <see cref="ContainerLifetime.Persistent"/> lifetime. 587public static IResourceBuilder<T> WithLifetime<T>(this IResourceBuilder<T> builder, ContainerLifetime lifetime) where T : ContainerResource 596ContainerLifetime.Session => PersistenceMode.Session, 597ContainerLifetime.Persistent => PersistenceMode.Persistent, 1097/// Combining this with <see cref="ContainerLifetime.Persistent"/> will allow Aspire to re-use an existing container that was not 1358/// For containers with a <see cref="ContainerLifetime.Persistent"/> lifetime, changing the contents of create file entries will result in the container being recreated. 1421/// For containers with a <see cref="ContainerLifetime.Persistent"/> lifetime, changing the contents of create file entries will result in the container being recreated.
Dcp\ResourceSnapshotBuilder.cs (3)
92ContainerLifetime GetContainerLifetime() 94return (container.Spec.Persistent ?? false) ? ContainerLifetime.Persistent : ContainerLifetime.Session;
Aspire.Hosting.Redis.Tests (1)
AddRedisTests.cs (1)
896.WithLifetime(ContainerLifetime.Persistent)
Aspire.Hosting.Tests (1)
Dcp\ResourceSnapshotBuilderTests.cs (1)
118Lifetime = ContainerLifetime.Persistent
Aspire.Hosting.TestUtilities (2)
Utils\PersistentContainerTestHelpers.cs (2)
131return GetPropertyValue(evt, ContainerLifetimePropertyName) is ContainerLifetime.Persistent && 137Assert.Equal(ContainerLifetime.Persistent, containerLifetime);