C# Class AGS.Types.BuildTargetsInfo

Datei anzeigen Open project: adventuregamestudio/ags Class Usage Examples

Public Methods

Method Description
FindBuildTargetByName ( string name ) : IBuildTarget

Locates a registered IBuildTarget by its name, (e.g, "Windows").

GetAvailableBuildTargetNames ( ) : string[]

Returns a list of the names of all available build targets.

GetAvailableBuildTargets ( ) : IList

Returns a list of the registered build targets which are currently available for building.

GetRegisteredBuildTargetNames ( ) : string[]
GetRegisteredBuildTargetNames ( bool onlyNormalTargets ) : string[]

Returns a list of the names of all registered build targets.

GetRegisteredBuildTargets ( ) : IList
GetRegisteredBuildTargets ( bool onlyNormalTargets ) : IList

Returns a read-only list of the IBuildTargets that are currently registered, regardless of whether they are selected or available for building.

GetSelectedBuildTargets ( ) : IList

Returns a list of the IBuildTargets that are currently available and selected for building.

RegisterBuildTarget ( IBuildTarget target ) : void

Includes an IBuildTarget in the list of potential target build platforms.

Private Methods

Method Description
BuildTargetsInfo ( ) : System

Method Details

FindBuildTargetByName() public static method

Locates a registered IBuildTarget by its name, (e.g, "Windows").
public static FindBuildTargetByName ( string name ) : IBuildTarget
name string
return IBuildTarget

GetAvailableBuildTargetNames() public static method

Returns a list of the names of all available build targets.
public static GetAvailableBuildTargetNames ( ) : string[]
return string[]

GetAvailableBuildTargets() public static method

Returns a list of the registered build targets which are currently available for building.
public static GetAvailableBuildTargets ( ) : IList
return IList

GetRegisteredBuildTargetNames() public static method

public static GetRegisteredBuildTargetNames ( ) : string[]
return string[]

GetRegisteredBuildTargetNames() public static method

Returns a list of the names of all registered build targets.
public static GetRegisteredBuildTargetNames ( bool onlyNormalTargets ) : string[]
onlyNormalTargets bool
return string[]

GetRegisteredBuildTargets() public static method

public static GetRegisteredBuildTargets ( ) : IList
return IList

GetRegisteredBuildTargets() public static method

Returns a read-only list of the IBuildTargets that are currently registered, regardless of whether they are selected or available for building.
public static GetRegisteredBuildTargets ( bool onlyNormalTargets ) : IList
onlyNormalTargets bool
return IList

GetSelectedBuildTargets() public static method

Returns a list of the IBuildTargets that are currently available and selected for building.
public static GetSelectedBuildTargets ( ) : IList
return IList

RegisterBuildTarget() public static method

Includes an IBuildTarget in the list of potential target build platforms.
public static RegisterBuildTarget ( IBuildTarget target ) : void
target IBuildTarget
return void