FileTracker.GetFileTrackerPath Method

Definition

Figures out and returns the path to the correct FileTracker.dll.

Overloads

GetFileTrackerPath(ExecutableType)

Given the ExecutableType of the tool being wrapped and information that we know about our current bitness, figures out and returns the path to the correct FileTracker.dll.

GetFileTrackerPath(ExecutableType, String)

Given the ExecutableType of the tool being wrapped and information that we know about our current bitness, figures out and returns the path to the correct FileTracker.dll.

GetFileTrackerPath(ExecutableType)

Given the ExecutableType of the tool being wrapped and information that we know about our current bitness, figures out and returns the path to the correct FileTracker.dll.

public:
 static System::String ^ GetFileTrackerPath(Microsoft::Build::Utilities::ExecutableType toolType);
public static string GetFileTrackerPath (Microsoft.Build.Utilities.ExecutableType toolType);
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public static string GetFileTrackerPath (Microsoft.Build.Utilities.ExecutableType toolType);
static member GetFileTrackerPath : Microsoft.Build.Utilities.ExecutableType -> string
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
static member GetFileTrackerPath : Microsoft.Build.Utilities.ExecutableType -> string
Public Shared Function GetFileTrackerPath (toolType As ExecutableType) As String

Parameters

toolType
ExecutableType

The ExecutableType of the tool being wrapped

Returns

The path of the tool.

Attributes

Applies to

GetFileTrackerPath(ExecutableType, String)

Given the ExecutableType of the tool being wrapped and information that we know about our current bitness, figures out and returns the path to the correct FileTracker.dll.

public:
 static System::String ^ GetFileTrackerPath(Microsoft::Build::Utilities::ExecutableType toolType, System::String ^ rootPath);
public static string GetFileTrackerPath (Microsoft.Build.Utilities.ExecutableType toolType, string rootPath);
static member GetFileTrackerPath : Microsoft.Build.Utilities.ExecutableType * string -> string
Public Shared Function GetFileTrackerPath (toolType As ExecutableType, rootPath As String) As String

Parameters

toolType
ExecutableType

The ExecutableType of the tool being wrapped

rootPath
String

The root path for FileTracker.dll. Overrides the toolType if specified.

Returns

Returns String.

Applies to