2 implementations of InternPath
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
885public void InternPath(ref string str, bool nullable = true) 1758public void InternPath(ref string str, bool nullable = true)
20 references to InternPath
Microsoft.Build.Engine.UnitTests (18)
BackEnd\BinaryTranslator_Tests.cs (18)
503translator.InternPath(ref value, nullable); 504translator.InternPath(ref valueUpperCase, nullable); 511translator.InternPath(ref deserializedValue, nullable); 512translator.InternPath(ref deserializedValueUpperCase, nullable); 533translator.InternPath(ref directory); 534translator.InternPath(ref fileName); 535translator.InternPath(ref fullPath); 543translator.InternPath(ref deserializedDirectory); 544translator.InternPath(ref deserializedFileName); 545translator.InternPath(ref deserializedFullPath); 567translator.InternPath(ref fullPath); 568translator.InternPath(ref directory); 569translator.InternPath(ref fileName); 577translator.InternPath(ref deserializedFullPath); 578translator.InternPath(ref deserializedDirectory); 579translator.InternPath(ref deserializedFileName); 722TranslationHelpers.GetWriteTranslator().InternPath(ref value, nullable); 725TranslationHelpers.GetReadTranslator().InternPath(ref deserializedValue, nullable);
Microsoft.Build.Framework (2)
BackEnd\TranslatorHelpers.cs (2)
136(ITranslator translator, ref string val) => translator.InternPath(ref val), 151(ITranslator translator, ref string key) => translator.InternPath(ref key),