14 writes to Content
aspire (3)
Commands\LogsCommand.cs (2)
218
Content
= l.Content,
326
Content
= logLine.Content,
LogsCommandJsonContext.LogLineJson.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Commands.LogLineJson(){ ResourceName = (string)args[0],
Content
= (string)args[1], IsError = (bool)args[2] },
Aspire.Cli.Tests (11)
Commands\LogsCommandTests.cs (11)
36
Content
= "日本語ログ émojis", // Japanese log with accented characters
63
Content
= "Test",
82
Content
= "Line with \"quotes\" and \\ backslash and\ttab",
101
Content
= "First line\nSecond line\r\nThird line",
274
new LogLineJson { ResourceName = "frontend",
Content
= "Starting...", IsError = false },
275
new LogLineJson { ResourceName = "frontend",
Content
= "Ready", IsError = false },
276
new LogLineJson { ResourceName = "backend",
Content
= "Error occurred", IsError = true }
316
new LogLineJson { ResourceName = "frontend",
Content
= "Line 1", IsError = false },
317
new LogLineJson { ResourceName = "frontend",
Content
= "Line 2", IsError = false },
318
new LogLineJson { ResourceName = "backend",
Content
= "Error", IsError = true }
345
Content
= "Line with\nnewline and\ttab and \"quotes\" and \\backslash",
10 references to Content
aspire (2)
LogsCommandJsonContext.LogLineJson.g.cs (2)
81
Getter = static obj => ((global::Aspire.Cli.Commands.LogLineJson)obj).
Content
,
138
string __value_Content = ((global::Aspire.Cli.Commands.LogLineJson)value).
Content
;
Aspire.Cli.Tests (8)
Commands\LogsCommandTests.cs (8)
52
Assert.Equal(logLine.
Content
, deserialized.
Content
);
91
Assert.Equal(logLine.
Content
, deserialized.
Content
);
109
Assert.Equal(logLine.
Content
, deserialized.
Content
);
364
Assert.Equal(logLine.
Content
, deserialized.
Content
);