ToolLocationHelper.GetSDKDesignTimeFolders Method

Definition

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

Overloads

GetSDKDesignTimeFolders(String, String, String)

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

GetSDKDesignTimeFolders(String)

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

GetSDKDesignTimeFolders(String, String, String)

Get the list of SDK folders which contains the DesignTime 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 ^> ^ GetSDKDesignTimeFolders(System::String ^ sdkRoot, System::String ^ targetConfiguration, System::String ^ targetArchitecture);
public static System.Collections.Generic.IList<string> GetSDKDesignTimeFolders (string sdkRoot, string targetConfiguration, string targetArchitecture);
static member GetSDKDesignTimeFolders : string * string * string -> System.Collections.Generic.IList<string>
Public Shared Function GetSDKDesignTimeFolders (sdkRoot As String, targetConfiguration As String, targetArchitecture As String) As IList(Of String)

Parameters

sdkRoot
String

Root folder for the SDK must contain a DesignTime 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 DesignTime files in the SDK

Applies to

GetSDKDesignTimeFolders(String)

Get the list of SDK folders which contains the designtime 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 ^> ^ GetSDKDesignTimeFolders(System::String ^ sdkRoot);
public static System.Collections.Generic.IList<string> GetSDKDesignTimeFolders (string sdkRoot);
static member GetSDKDesignTimeFolders : string -> System.Collections.Generic.IList<string>
Public Shared Function GetSDKDesignTimeFolders (sdkRoot As String) As IList(Of String)

Parameters

sdkRoot
String

Root folder for the SDK must contain a Designtime folder

Returns

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

Applies to