1 write to LogEntry
dotnet.Tests (1)
CommandTests\MSBuild\FakeTelemetry.cs (1)
16LogEntry = new LogEntry { EventName = eventName, Properties = properties, Measurement = measurements };
14 references to LogEntry
dotnet.Tests (14)
CommandTests\MSBuild\GivenMSBuildLogger.cs (14)
28fakeTelemetry.LogEntry.Should().BeNull(); 47fakeTelemetry.LogEntry.EventName.Should().Be(MSBuildLogger.SdkTaskBaseCatchExceptionTelemetryEventName); 48fakeTelemetry.LogEntry.Properties.Keys.Count.Should().Be(2); 49fakeTelemetry.LogEntry.Properties["exceptionType"].Should().Be("System.Exception"); 50fakeTelemetry.LogEntry.Properties["detail"].Should().Be("Exception detail"); 69fakeTelemetry.LogEntry.EventName.Should().Be(MSBuildLogger.PublishPropertiesTelemetryEventName); 70fakeTelemetry.LogEntry.Properties.Keys.Count.Should().Be(2); 71fakeTelemetry.LogEntry.Properties["PublishReadyToRun"].Should().Be("null"); 72fakeTelemetry.LogEntry.Properties["otherProperty"].Should().Be("otherProperty value"); 91fakeTelemetry.LogEntry.EventName.Should().Be(MSBuildLogger.ReadyToRunTelemetryEventName); 92fakeTelemetry.LogEntry.Properties.Keys.Count.Should().Be(2); 93fakeTelemetry.LogEntry.Properties["PublishReadyToRunUseCrossgen2"].Should().Be("null"); 94fakeTelemetry.LogEntry.Properties["otherProperty"].Should().Be("otherProperty value"); 117fakeTelemetry.LogEntry.Properties.Should().BeEquivalentTo(new Dictionary<string, string>