1 instantiation of VolumeSnapshot
Aspire.Hosting (1)
Dcp\ApplicationExecutor.cs (1)
799
return container.Spec.VolumeMounts?.Select(v => new
VolumeSnapshot
(v.Source, v.Target ?? "", v.Type, v.IsReadOnly)).ToImmutableArray() ?? [];
2 references to VolumeSnapshot
Aspire.Hosting (2)
ApplicationModel\CustomResourceSnapshot.cs (1)
101
public ImmutableArray<
VolumeSnapshot
> Volumes { get; init; } = [];
Dcp\ApplicationExecutor.cs (1)
795
private static ImmutableArray<
VolumeSnapshot
> GetVolumes(CustomResource resource)