Class BuildInfoExtensions
Inherited Members
Namespace: Microsoft.MixedReality.Toolkit.Build.Editor
Assembly: cs.temp.dll.dll
Syntax
public static class BuildInfoExtensions
Methods
AppendSymbols(IBuildInfo, IEnumerable<String>)
Append symbols to the end of the IBuild
Declaration
public static void AppendSymbols(this IBuildInfo buildInfo, IEnumerable<string> symbols)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
IEnumerable<String> | symbols | The string collection to append. |
AppendSymbols(IBuildInfo, String[])
Append symbols to the end of the IBuild
Declaration
public static void AppendSymbols(this IBuildInfo buildInfo, params string[] symbol)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
String[] | symbol | The string array to append. |
AppendWithoutConfigurationSymbols(IBuildInfo, String)
Appends the IBuild
Declaration
public static void AppendWithoutConfigurationSymbols(this IBuildInfo buildInfo, string symbols)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
String | symbols | Symbols to append. |
GetGroup(BuildTarget)
Gets the BuildTargetGroup for the IBuild
Declaration
public static BuildTargetGroup GetGroup(this BuildTarget buildTarget)
Parameters
Type | Name | Description |
---|---|---|
Build |
buildTarget |
Returns
Type | Description |
---|---|
Build |
The BuildTargetGroup for the IBuild |
HasAnySymbols(IBuildInfo, IEnumerable<String>)
Does the IBuild
Declaration
public static bool HasAnySymbols(this IBuildInfo buildInfo, IEnumerable<string> symbols)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
IEnumerable<String> | symbols | The string collection of symbols to match. |
Returns
Type | Description |
---|---|
Boolean | True, if any of the provided symbols are in the Build |
HasAnySymbols(IBuildInfo, String[])
Does the IBuild
Declaration
public static bool HasAnySymbols(this IBuildInfo buildInfo, params string[] symbols)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
String[] | symbols | The string array of symbols to match. |
Returns
Type | Description |
---|---|
Boolean | True, if any of the provided symbols are in the Build |
HasConfigurationSymbol(IBuildInfo)
Checks if the IBuild
Declaration
public static bool HasConfigurationSymbol(this IBuildInfo buildInfo)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo |
Returns
Type | Description |
---|---|
Boolean | True, if the Build |
RemoveSymbols(IBuildInfo, IEnumerable<String>)
Remove symbols from the IBuild
Declaration
public static void RemoveSymbols(this IBuildInfo buildInfo, IEnumerable<string> symbolsToRemove)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
buildInfo | |
IEnumerable<String> | symbolsToRemove | The string collection to remove. |