ToolLocationHelper.GetSDKRedistFolders Method

Definition

Gets the list of SDK folders that contain the redist files for the SDK at the specified SDK root. The list is in the order that must be used in searching for references.

Overloads

GetSDKRedistFolders(String)

Get the list of SDK folders which contains the redist files for the sdk at the sdkRoot provided in the order in which they should be searched for references.

GetSDKRedistFolders(String, String, String)

Get the list of SDK folders which contains the redist files for the sdk at the sdkRoot provided in the order in which they should be searched for references.

GetSDKRedistFolders(String)

Get the list of SDK folders which contains the redist files for the sdk at the sdkRoot provided in the order in which they should be searched for references.

public:
 static System::Collections::Generic::IList<System::String ^> ^ GetSDKRedistFolders(System::String ^ sdkRoot);
public static System.Collections.Generic.IList<string> GetSDKRedistFolders (string sdkRoot);
static member GetSDKRedistFolders : string -> System.Collections.Generic.IList<string>
Public Shared Function GetSDKRedistFolders (sdkRoot As String) As IList(Of String)

Parameters

sdkRoot
String

Root folder for the SDK must contain a redist folder

Returns

A list of folders in the order which they should be used when looking for redist files in the SDK

Applies to

GetSDKRedistFolders(String, String, String)

Get the list of SDK folders which contains the redist files for the sdk at the sdkRoot provided in the order in which they should be searched for references.

public:
 static System::Collections::Generic::IList<System::String ^> ^ GetSDKRedistFolders(System::String ^ sdkRoot, System::String ^ targetConfiguration, System::String ^ targetArchitecture);
public static System.Collections.Generic.IList<string> GetSDKRedistFolders (string sdkRoot, string targetConfiguration, string targetArchitecture);
static member GetSDKRedistFolders : string * string * string -> System.Collections.Generic.IList<string>
Public Shared Function GetSDKRedistFolders (sdkRoot As String, targetConfiguration As String, targetArchitecture As String) As IList(Of String)

Parameters

sdkRoot
String

Root folder for the SDK must contain a redist folder

targetConfiguration
String

The configuration the SDK is targeting. This should be Debug or Retail

targetArchitecture
String

The architecture the SDK is targeting

Returns

A list of folders in the order which they should be used when looking for redist files in the SDK

Applies to