ProjectInstance: create a ProjectItemInstance dictionary of the correct size in copying constructor

This commit is contained in:
Jeff Robison 2023-06-20 16:27:52 -07:00
Родитель 363f522dc3
Коммит 58ca4b0f15
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -609,7 +609,7 @@ namespace Microsoft.Build.Execution
_properties.Set(property.DeepClone(_isImmutable));
}
_items = new ItemDictionary<ProjectItemInstance>(that._items.ItemTypes.Count);
_items = new ItemDictionary<ProjectItemInstance>(that._items.Count);
foreach (ProjectItemInstance item in that.Items)
{