2 writes to Timestamp
aspire (2)
Commands\LogsCommand.cs (2)
269Timestamp = timestamps && entry.Timestamp.HasValue ? FormatTimestamp(entry.Timestamp.Value) : null, 455Timestamp = timestamps && entry.Timestamp.HasValue ? FormatTimestamp(entry.Timestamp.Value) : null,
6 references to Timestamp
Aspire.Cli.Tests (6)
Commands\LogsCommandTests.cs (6)
475Assert.Equal("2025-01-15T10:30:00.000Z", logsOutput.Logs[0].Timestamp); 480Assert.Equal("2025-01-15T10:30:01.000Z", logsOutput.Logs[1].Timestamp); 485Assert.Equal("2025-01-15T10:30:02.000Z", logsOutput.Logs[2].Timestamp); 514Assert.Null(logsOutput.Logs[0].Timestamp); 519Assert.Null(logsOutput.Logs[1].Timestamp); 524Assert.Null(logsOutput.Logs[2].Timestamp);