17 references to ExecutableType
Microsoft.Build.Utilities.Core (17)
TrackedDependencies\FileTracker.cs (17)
377string fileTrackerPath = GetFileTrackerPath(ExecutableType.SameAsCurrentProcess, rootPath);
426public static bool ForceOutOfProcTracking(ExecutableType toolType) => ForceOutOfProcTracking(toolType, null, null);
435public static bool ForceOutOfProcTracking(ExecutableType toolType, string dllName, string cancelEventName)
462/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
463public static string GetTrackerPath(ExecutableType toolType) => GetTrackerPath(toolType, null);
470/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
472public static string GetTrackerPath(ExecutableType toolType, string rootPath) => GetPath(s_TrackerFilename, toolType, rootPath);
479/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
480public static string GetFileTrackerPath(ExecutableType toolType) => GetFileTrackerPath(toolType, null);
487/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
489public static string GetFileTrackerPath(ExecutableType toolType, string rootPath) => GetPath(s_FileTrackerFilename, toolType, rootPath);
498private static string GetPath(string filename, ExecutableType toolType, string rootPath)
662public static Process StartProcess(string command, string arguments, ExecutableType toolType, string dllName, string intermediateDirectory, string rootFiles, string cancelEventName)
680public static Process StartProcess(string command, string arguments, ExecutableType toolType, string dllName, string intermediateDirectory, string rootFiles)
692public static Process StartProcess(string command, string arguments, ExecutableType toolType, string intermediateDirectory, string rootFiles)
703public static Process StartProcess(string command, string arguments, ExecutableType toolType, string rootFiles)
713public static Process StartProcess(string command, string arguments, ExecutableType toolType)