2 implementations of InternPath
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
854public void InternPath(ref string str, bool nullable = true) 1669public void InternPath(ref string str, bool nullable = true)
24 references to InternPath
Microsoft.Build (2)
TranslatorHelpers.cs (2)
133(ITranslator translator, ref string val) => translator.InternPath(ref val), 148(ITranslator translator, ref string key) => translator.InternPath(ref key),
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.Tasks.Core (2)
TranslatorHelpers.cs (2)
133(ITranslator translator, ref string val) => translator.InternPath(ref val), 148(ITranslator translator, ref string key) => translator.InternPath(ref key),
MSBuild (2)
TranslatorHelpers.cs (2)
133(ITranslator translator, ref string val) => translator.InternPath(ref val), 148(ITranslator translator, ref string key) => translator.InternPath(ref key),