20 references to Persistent
Aspire.Hosting (6)
ContainerResourceBuilderExtensions.cs (4)
388/// Marking a container resource to have a <see cref="ContainerLifetime.Persistent"/> lifetime. 541/// Combining this with <see cref="ContainerLifetime.Persistent"/> will allow Aspire to re-use an existing container that was not 715/// For containers with a <see cref="ContainerLifetime.Persistent"/> lifetime, changing the contents of create file entries will result in the container being recreated. 778/// For containers with a <see cref="ContainerLifetime.Persistent"/> lifetime, changing the contents of create file entries will result in the container being recreated.
Dcp\DcpExecutor.cs (1)
1119if (container.GetContainerLifetimeType() == ContainerLifetime.Persistent)
Dcp\ResourceSnapshotBuilder.cs (1)
85return (container.Spec.Persistent ?? false) ? ContainerLifetime.Persistent : ContainerLifetime.Session;
Aspire.Hosting.Azure.Tests (3)
AzureEventHubsExtensionsTests.cs (1)
567var lifetime = isPersistent ? ContainerLifetime.Persistent : ContainerLifetime.Session;
AzureResourceOptionsTests.cs (1)
37.RunAsContainer(x => x.WithLifetime(ContainerLifetime.Persistent))
AzureServiceBusExtensionsTests.cs (1)
702var lifetime = isPersistent ? ContainerLifetime.Persistent : ContainerLifetime.Session;
Aspire.Hosting.MySql.Tests (3)
MySqlFunctionalTests.cs (3)
485.AddMySql("resource", password: passwordParameter).WithLifetime(ContainerLifetime.Persistent) 486.WithPhpMyAdmin(c => c.WithLifetime(ContainerLifetime.Persistent)) 492builder.AddMySql("resource2", password: passwordParameter2).WithLifetime(ContainerLifetime.Persistent);
Aspire.Hosting.PostgreSQL.Tests (3)
PostgresFunctionalTests.cs (3)
475.AddPostgres("resource", password: passwordParameter).WithLifetime(ContainerLifetime.Persistent) 476.WithPgWeb(c => c.WithLifetime(ContainerLifetime.Persistent)) 477.WithPgAdmin(c => c.WithLifetime(ContainerLifetime.Persistent))
AzureContainerApps.AppHost (3)
Program.cs (3)
21.WithLifetime(ContainerLifetime.Persistent) 27.RunAsEmulator(c => c.WithLifetime(ContainerLifetime.Persistent)); 33.RunAsEmulator(c => c.WithLifetime(ContainerLifetime.Persistent));
ServiceBus.AppHost (1)
Program.cs (1)
37}).WithLifetime(ContainerLifetime.Persistent));
TestShop.AppHost (1)
Program.cs (1)
57.WithLifetime(ContainerLifetime.Persistent)