-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wix directory hierarchy #1116
Wix directory hierarchy #1116
Conversation
…rchy Added getComponentRefs to get component refs from a directory component hierarchy Changed the Start property in WiXServiceControl to optional to add the ability not to start a service on install
…elected folder into a sub folder
@@ -96,13 +100,23 @@ type WiXServiceControl = | |||
Id : string | |||
Name: string | |||
Remove : InstallUninstall | |||
Start : InstallUninstall | |||
Start : InstallUninstall option |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this breaking?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. But it came just to my mind to extend the InstallUninstall type, like "Never" or "None", instead of option, to accomplish the same task.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes plese try to keep breaking changes to a very low
… avoid breaking changes. Added a new Option "Never" to type InstallUninstall instead and handled the new option in WiXServiceControl for Start, Stop and Remove
Conflicts: src/app/FakeLib/WiXHelper.fs
Removed the breaking change from the last commit. The InstallUninstall type now has the new option "Never" |
thx! |
Added the ability to create a full directory component hierarchy, where directories can contain components and directories.
Now you are able to use attachServiceControlToComponents and attachServiceInstallToComponents to on a directory component hierarchy.
There is on minor breaking change:
The property Start in WiXServiceControl is now an option to provide the ability not to start a service on install. If someone has set the property manually, the property has to be changed from e.g. Both to Some(Both)