-
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
Added Squirrel helpers to generate Squirrel installers #899
Conversation
@@ -0,0 +1,127 @@ | |||
[<AutoOpen>] |
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.
Please remove auto open
This looks very cool. Need to take a deeper look. |
BootstrapperExe = None | ||
LoadingGif = None | ||
ToolPath = findToolInSubPath toolname (currentDirectory @@ "tools" @@ "Squirrel") | ||
TimeOut = TimeSpan.FromMinutes 5. |
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.
This should probably be 10min, this can take awhile
LGTM! |
Yeah, I've noticed that it can take some time, so a good idea to have the default higher. |
I'm on vacation for a couple of days, but I will merge/release when I'm back on Monday. |
Added Squirrel helpers to generate Squirrel installers
OMG OMG OMG |
Added SquirrelHelpers.fs to generate Squirrel for Windows installers (https://github.com/Squirrel/Squirrel.Windows).
The code is a cleanup of a helper I made for internal use to create Squirrel installers.
I haven't done much F# before, so if you have suggestions to improvements, that would be greatly appreciated.