Summary
Compiles all
.wxs
sources matching the specified pattern.
- Namespace
- Cake
.Common .Tools .WiX - Containing Type
- WiXAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Candle")]
public static void WiXCandle(this ICakeContext context, GlobPattern pattern, CandleSettings settings = null)
Examples
CandleSettings settings = new CandleSettings {
Architecture = Architecture.X64,
Verbose = true
};
WiXCandle("./src/*.wxs", 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 | CandleSettings | The settings. |
Return Value
Type | Description |
---|---|
void |