C# Класс AGS.Types.BuildTargetsInfo

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
BuildTargetsInfo ( ) : System

Описание методов

FindBuildTargetByName() публичный статический метод

Locates a registered IBuildTarget by its name, (e.g, "Windows").
public static FindBuildTargetByName ( string name ) : IBuildTarget
name string
Результат IBuildTarget

GetAvailableBuildTargetNames() публичный статический метод

Returns a list of the names of all available build targets.
public static GetAvailableBuildTargetNames ( ) : string[]
Результат string[]

GetAvailableBuildTargets() публичный статический метод

Returns a list of the registered build targets which are currently available for building.
public static GetAvailableBuildTargets ( ) : IList
Результат IList

GetRegisteredBuildTargetNames() публичный статический метод

public static GetRegisteredBuildTargetNames ( ) : string[]
Результат string[]

GetRegisteredBuildTargetNames() публичный статический метод

Returns a list of the names of all registered build targets.
public static GetRegisteredBuildTargetNames ( bool onlyNormalTargets ) : string[]
onlyNormalTargets bool
Результат string[]

GetRegisteredBuildTargets() публичный статический метод

public static GetRegisteredBuildTargets ( ) : IList
Результат IList

GetRegisteredBuildTargets() публичный статический метод

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
Результат IList

GetSelectedBuildTargets() публичный статический метод

Returns a list of the IBuildTargets that are currently available and selected for building.
public static GetSelectedBuildTargets ( ) : IList
Результат IList

RegisterBuildTarget() публичный статический метод

Includes an IBuildTarget in the list of potential target build platforms.
public static RegisterBuildTarget ( IBuildTarget target ) : void
target IBuildTarget
Результат void