-
-
Notifications
You must be signed in to change notification settings - Fork 764
Closed
Labels
Milestone
Description
cake/src/Cake.Common/Tools/InnoSetup/InnoSetupAliases.cs
Lines 47 to 49 in ba349da
| /// InnoSetup("./src/Cake.iss", new InnoSetupSettings { | |
| /// OutputDir = outputDirectory | |
| /// }); |
There is no property named OutputDir on InnoSetupSettings class.
That should be OutputDirectory.
InnoSetup("./src/Cake.iss", new InnoSetupSettings {
OutputDirectory = outputDirectory
});