11 references to Persistent
Aspire.Hosting (7)
ApplicationModel\ResourceExtensions.cs (1)
1139
ContainerLifetime.
Persistent
=> Lifetime.Persistent,
ContainerResourceBuilderExtensions.cs (5)
575
/// Marking a container resource to have a <see cref="ContainerLifetime.
Persistent
"/> lifetime.
597
ContainerLifetime.
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 (1)
94
return (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)
118
Lifetime = ContainerLifetime.
Persistent
Aspire.Hosting.TestUtilities (2)
Utils\PersistentContainerTestHelpers.cs (2)
131
return GetPropertyValue(evt, ContainerLifetimePropertyName) is ContainerLifetime.
Persistent
&&
137
Assert.Equal(ContainerLifetime.
Persistent
, containerLifetime);