2 implementations of Translate
Microsoft.Build.Framework (2)
BinaryTranslator.cs (2)
528public void Translate<T>(ref T value) 1228public void Translate<T>(ref T value)
21 references to Translate
Microsoft.Build (15)
BackEnd\BuildManager\CacheSerialization.cs (4)
103translator.Translate(ref configCacheToSerialize); 104translator.Translate(ref resultsCacheToSerialize); 126translator.Translate(ref configCache); 127translator.Translate(ref resultsCache);
BackEnd\Components\Caching\ResultsCache.cs (1)
251(ITranslator aTranslator, ref BuildResult result) => aTranslator.Translate(ref result),
BackEnd\Components\FileAccesses\FileAccessReport.cs (1)
21public void Translate(ITranslator translator) => translator.Translate(ref _fileAccessData);
BackEnd\Components\FileAccesses\ProcessReport.cs (1)
25public void Translate(ITranslator translator) => translator.Translate(ref _processData);
BackEnd\Node\NodeConfiguration.cs (1)
181translator.Translate(ref _loggingNodeConfiguration);
BackEnd\Shared\BuildRequest.cs (2)
432translator.Translate(ref _requestedProjectState); 433translator.Translate(ref _hostServices);
BackEnd\Shared\BuildRequestUnblocker.cs (1)
112translator.Translate(ref _buildResult);
Instance\ProjectInstance.cs (1)
2406translator.Translate(ref _requestedProjectStateFilter);
Instance\TaskRegistry.cs (3)
1812translator.Translate(ref _taskIdentity); 1816translator.Translate(ref _parameterGroupAndTaskBody); 1856translator.Translate(ref taskIdentity);
Microsoft.Build.Engine.UnitTests (6)
BackEnd\BinaryTranslator_Tests.cs (4)
309TranslationHelpers.GetWriteTranslator().Translate(ref value); 312TranslationHelpers.GetReadTranslator().Translate(ref deserializedValue); 325TranslationHelpers.GetWriteTranslator().Translate(ref value); 328TranslationHelpers.GetReadTranslator().Translate(ref deserializedValue);
BackEnd\ConfigCache_Tests.cs (2)
97TranslationHelpers.GetWriteTranslator().Translate(ref initial); 101TranslationHelpers.GetReadTranslator().Translate(ref copy);