This method explicitly passes null for the pool, which results in significant numbers of buffer allocations during VS solution load scenarios (7.5% of total solution load allocations for the solution I was testing at the time).
|
var itemTranslator = BinaryTranslator.GetReadTranslator(itemsStream, null); |
This method explicitly passes
nullfor the pool, which results in significant numbers of buffer allocations during VS solution load scenarios (7.5% of total solution load allocations for the solution I was testing at the time).msbuild/src/Build/BackEnd/Shared/TargetResult.cs
Line 323 in 13522d2