8 references to DeepCopy
Microsoft.Build (1)
Instance\ProjectInstance.cs (1)
2050
return
DeepCopy
(_isImmutable);
Microsoft.Build.Engine.OM.UnitTests (4)
Instance\ProjectInstance_Tests.cs (4)
869
var instance = protoInstance.
DeepCopy
(false /* mutable */);
888
var instance = protoInstance.
DeepCopy
(true /* immutable */);
935
var instance = protoInstance.
DeepCopy
(true /* immutable */);
974
var instance = protoInstance.
DeepCopy
(false /* mutable */);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\BuildManager_Tests.cs (3)
3706
var mainInstance = mainProject.CreateProjectInstance(ProjectInstanceSettings.Immutable).
DeepCopy
(isImmutable: false);
3733
var p2pInstance = p2pProject.CreateProjectInstance(ProjectInstanceSettings.Immutable).
DeepCopy
(isImmutable: false);
3858
ProjectInstance instance = project.CreateProjectInstance(ProjectInstanceSettings.Immutable).
DeepCopy
(false);