Summary
Links all
.wixobj
files matching the specified pattern.
- Namespace
- Cake
.Common .Tools .WiX - Containing Type
- WiXAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Light")]
public static void WiXLight(this ICakeContext context, GlobPattern pattern, LightSettings settings = null)
Examples
LightSettings settings = new LightSettings {
RawArguments = "-O1 -pedantic -v"
};
WiXLight("./src/*.wixobj", settings);
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Cake |
An attribute used for documentation of alias methods/properties. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
pattern | GlobPattern | The globbing pattern. |
settings | LightSettings | The settings. |
Return Value
Type | Description |
---|---|
void |