5 instantiations of ExecutableSpec
Aspire.Hosting (3)
Dcp\Model\Executable.cs (1)
293var exe = new Executable(new ExecutableSpec
Dcp\Model\ExecutableReplicaSet.cs (1)
22public ExecutableSpec Spec { get; set; } = new ExecutableSpec();
Dcp\Model\ModelCommon.cs (1)
368public ExecutableSpec Spec { get; set; } = new ExecutableSpec();
Aspire.Hosting.Tests (2)
Dcp\DcpExecutorTests.cs (2)
10025AssertMonitorTimestamp(new ExecutableSpec { MonitorPid = 1234, MonitorTimestamp = wholeSecondTimestamp }, "0001-01-01T00:06:30.000000Z"); 10026AssertMonitorTimestamp(new ExecutableSpec { MonitorPid = 1234, MonitorTimestamp = fractionalSecondTimestamp }, "0001-01-01T00:06:30.123000Z");
9 references to ExecutableSpec
Aspire.Hosting (7)
Dcp\ExecutableCreator.cs (3)
166var spec = executable.Spec; 264private static void ApplyExplicitStart(IResource resource, ExecutableSpec spec) 272private static void ApplyLifetime(IResource resource, ExecutableSpec spec)
Dcp\Model\Executable.cs (2)
284internal sealed class Executable : CustomResource<ExecutableSpec, ExecutableStatus>, IKubernetesStaticMetadata 289public Executable(ExecutableSpec spec) : base(spec) { }
Dcp\Model\ExecutableReplicaSet.cs (1)
22public ExecutableSpec Spec { get; set; } = new ExecutableSpec();
Dcp\Model\ModelCommon.cs (1)
368public ExecutableSpec Spec { get; set; } = new ExecutableSpec();
Aspire.Hosting.Tests (2)
Dcp\DcpExecutorTests.cs (2)
10046var executableSpec = JsonSerializer.Deserialize<ExecutableSpec>("""{"monitorPid":1234,"monitorTimestamp":"0001-01-01T00:06:30.123000Z"}""");