FileTracker.FormatRootingMarker Method

Definition

Construct a rooting marker string from the ITaskItem array of primary sources.

Overloads

FormatRootingMarker(ITaskItem)

Construct a rooting marker string from the ITaskItem array of primary sources.

FormatRootingMarker(ITaskItem[])

Construct a rooting marker string from the ITaskItem array of primary sources.

FormatRootingMarker(ITaskItem, ITaskItem)

Construct a rooting marker string from the ITaskItem array of primary sources.

FormatRootingMarker(ITaskItem[], ITaskItem[])

Construct a rooting marker string from the ITaskItem array of primary sources.

FormatRootingMarker(ITaskItem)

Construct a rooting marker string from the ITaskItem array of primary sources.

public:
 static System::String ^ FormatRootingMarker(Microsoft::Build::Framework::ITaskItem ^ source);
public static string FormatRootingMarker (Microsoft.Build.Framework.ITaskItem source);
static member FormatRootingMarker : Microsoft.Build.Framework.ITaskItem -> string
Public Shared Function FormatRootingMarker (source As ITaskItem) As String

Parameters

source
ITaskItem

An ITaskItem containing information about the primary source.

Returns

The marker string.

Applies to

FormatRootingMarker(ITaskItem[])

Construct a rooting marker string from the ITaskItem array of primary sources.

public:
 static System::String ^ FormatRootingMarker(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ sources);
public static string FormatRootingMarker (Microsoft.Build.Framework.ITaskItem[] sources);
[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public static string FormatRootingMarker (Microsoft.Build.Framework.ITaskItem[] sources);
static member FormatRootingMarker : Microsoft.Build.Framework.ITaskItem[] -> string
[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
static member FormatRootingMarker : Microsoft.Build.Framework.ITaskItem[] -> string
Public Shared Function FormatRootingMarker (sources As ITaskItem()) As String

Parameters

sources
ITaskItem[]

ITaskItem array of primary sources.

Returns

The marker string.

Attributes

Applies to

FormatRootingMarker(ITaskItem, ITaskItem)

Construct a rooting marker string from the ITaskItem array of primary sources.

public:
 static System::String ^ FormatRootingMarker(Microsoft::Build::Framework::ITaskItem ^ source, Microsoft::Build::Framework::ITaskItem ^ output);
public static string FormatRootingMarker (Microsoft.Build.Framework.ITaskItem source, Microsoft.Build.Framework.ITaskItem output);
static member FormatRootingMarker : Microsoft.Build.Framework.ITaskItem * Microsoft.Build.Framework.ITaskItem -> string
Public Shared Function FormatRootingMarker (source As ITaskItem, output As ITaskItem) As String

Parameters

source
ITaskItem

An ITaskItem containing information about the primary source.

output
ITaskItem

An ITaskItem containing information about the output.

Returns

The marker string.

Applies to

FormatRootingMarker(ITaskItem[], ITaskItem[])

Construct a rooting marker string from the ITaskItem array of primary sources.

public:
 static System::String ^ FormatRootingMarker(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ sources, cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ outputs);
public static string FormatRootingMarker (Microsoft.Build.Framework.ITaskItem[] sources, Microsoft.Build.Framework.ITaskItem[] outputs);
static member FormatRootingMarker : Microsoft.Build.Framework.ITaskItem[] * Microsoft.Build.Framework.ITaskItem[] -> string
Public Shared Function FormatRootingMarker (sources As ITaskItem(), outputs As ITaskItem()) As String

Parameters

sources
ITaskItem[]

ITaskItem array of primary sources.

outputs
ITaskItem[]

ITaskItem array of outputs.

Returns

The marker string.

Applies to