2 writes to Persistent
Aspire.Hosting (1)
Dcp\ContainerCreator.cs (1)
157ctr.Spec.Persistent = true;
Aspire.Hosting.Tests (1)
Dcp\ResourceSnapshotBuilderTests.cs (1)
26container.Spec.Persistent = true;
5 references to Persistent
Aspire.Hosting (1)
Dcp\ResourceSnapshotBuilder.cs (1)
94return (container.Spec.Persistent ?? false) ? ContainerLifetime.Persistent : ContainerLifetime.Session;
Aspire.Hosting.Tests (4)
Dcp\DcpExecutorTests.cs (3)
5119Assert.True(container.Spec.Persistent.GetValueOrDefault()); 5272Assert.True(container.Spec.Persistent.GetValueOrDefault()); 9297Assert.True(container.Spec.Persistent);
DistributedApplicationTests.cs (1)
2055Assert.True(dcpContainer.Spec.Persistent.GetValueOrDefault());