2 writes to LongProperty
Microsoft.Gen.Logging.Generated.Tests (2)
LogPropertiesTests.cs (2)
384var structToLog = new MyCustomStruct { LongProperty = 1L, NullableTransitiveStructProperty2 = transitiveStruct }; 414MyCustomStruct? structToLog = new MyCustomStruct { LongProperty = 1L, NullableTransitiveStructProperty = transitiveStruct };
11 references to LongProperty
Microsoft.Gen.Logging.Generated.Tests (11)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\Logging.g.cs (6)
5099state.TagArray[14] = new("classToLog.CustomStructProperty.LongProperty", classToLog?.CustomStructProperty.LongProperty); 5103state.TagArray[10] = new("classToLog.CustomStructNullableProperty.LongProperty", classToLog?.CustomStructNullableProperty?.LongProperty); 5107state.TagArray[6] = new("classToLog.CustomStructNullableProperty2.LongProperty", classToLog?.CustomStructNullableProperty2?.LongProperty); 5196state.TagArray[3] = new("structParam.LongProperty", structParam.LongProperty); 5234state.TagArray[3] = new("structParam.LongProperty", structParam?.LongProperty); 5272state.TagArray[3] = new("structParam.LongProperty", structParam?.LongProperty);
LogPropertiesTests.cs (5)
260["classToLog.CustomStructProperty.LongProperty"] = classToLog.CustomStructProperty.LongProperty.ToInvariantString(), 270["classToLog.CustomStructNullableProperty.LongProperty"] = classToLog.CustomStructNullableProperty?.LongProperty.ToInvariantString(), 280["classToLog.CustomStructNullableProperty2.LongProperty"] = classToLog.CustomStructNullableProperty2?.LongProperty.ToInvariantString(), 394["structParam.LongProperty"] = structToLog.LongProperty.ToInvariantString(), 424["structParam.LongProperty"] = structToLog.Value.LongProperty.ToInvariantString(),