FileTracker.CreateRootingMarkerResponseFile Method

Definition

Creates a temporary response file containing the rooting marker.

Overloads

CreateRootingMarkerResponseFile(ITaskItem[])

Given a set of source files in the form of ITaskItem, creates a temporary response file containing the rooting marker that corresponds to those sources.

CreateRootingMarkerResponseFile(String)

Given a rooting marker, creates a temporary response file with that rooting marker in it.

CreateRootingMarkerResponseFile(ITaskItem[])

Given a set of source files in the form of ITaskItem, creates a temporary response file containing the rooting marker that corresponds to those sources.

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

Parameters

sources
ITaskItem[]

ITaskItem array of primary sources.

Returns

The response file path.

Applies to

CreateRootingMarkerResponseFile(String)

Given a rooting marker, creates a temporary response file with that rooting marker in it.

public:
 static System::String ^ CreateRootingMarkerResponseFile(System::String ^ rootMarker);
public static string CreateRootingMarkerResponseFile (string rootMarker);
static member CreateRootingMarkerResponseFile : string -> string
Public Shared Function CreateRootingMarkerResponseFile (rootMarker As String) As String

Parameters

rootMarker
String

The rooting marker to put in the response file.

Returns

The response file path.

Applies to