17 references to ExecutableType
Microsoft.Build.Utilities.Core (17)
TrackedDependencies\FileTracker.cs (17)
405string fileTrackerPath = GetFileTrackerPath(ExecutableType.SameAsCurrentProcess, rootPath);
454public static bool ForceOutOfProcTracking(ExecutableType toolType) => ForceOutOfProcTracking(toolType, null, null);
463public static bool ForceOutOfProcTracking(ExecutableType toolType, string dllName, string cancelEventName)
490/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
491public static string GetTrackerPath(ExecutableType toolType) => GetTrackerPath(toolType, null);
498/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
500public static string GetTrackerPath(ExecutableType toolType, string rootPath) => GetPath(s_TrackerFilename, toolType, rootPath);
507/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
508public static string GetFileTrackerPath(ExecutableType toolType) => GetFileTrackerPath(toolType, null);
515/// <param name="toolType">The <see cref="ExecutableType"/> of the tool being wrapped</param>
517public static string GetFileTrackerPath(ExecutableType toolType, string rootPath) => GetPath(s_FileTrackerFilename, toolType, rootPath);
526private static string GetPath(string filename, ExecutableType toolType, string rootPath)
689public static Process StartProcess(string command, string arguments, ExecutableType toolType, string dllName, string intermediateDirectory, string rootFiles, string cancelEventName)
707public static Process StartProcess(string command, string arguments, ExecutableType toolType, string dllName, string intermediateDirectory, string rootFiles)
719public static Process StartProcess(string command, string arguments, ExecutableType toolType, string intermediateDirectory, string rootFiles)
730public static Process StartProcess(string command, string arguments, ExecutableType toolType, string rootFiles)
740public static Process StartProcess(string command, string arguments, ExecutableType toolType)