Summary
Compiles the given Inno Setup script using the given settings.
- Namespace
- Cake
.Common .Tools .InnoSetup - Containing Type
- InnoSetupAliases
Syntax
[CakeMethodAlias]
public static void InnoSetup(this ICakeContext context, FilePath scriptFile, InnoSetupSettings settings)
Examples
InnoSetup("./src/Cake.iss", new InnoSetupSettings {
OutputDirectory = outputDirectory
});
Attributes
| Type | Description |
|---|---|
| Cake |
An attribute used to mark script method aliases. |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context. |
| scriptFile | FilePath | The path to the .iss script file to compile. |
| settings | InnoSetupSettings | The InnoSetupSettings to use. |
Return Value
| Type | Description |
|---|---|
| void |
