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