-
Notifications
You must be signed in to change notification settings - Fork 585
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
Add some Xamarin.iOS and Xamarin.Android helpers #527
Conversation
/// Restores NuGet packages and Xamarin Components for a project or solution | ||
/// ## Parameters | ||
/// - `setParams` - Function used to override the default package restore parameters | ||
let RestorePackages (setParams: PackageRestoreParams -> PackageRestoreParams) = |
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.
couldn't you just use the existing nuget package restore?
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.
It could for the NuGet part. My original thinking as that I'd wrap both up into a single method, but now I'm thinking it probably makes sense to separate them anyway and have the method just handle components. Will update.
@forki Just pushed a couple updates, let me know what you think. The existing NuGet restore helper doesn't really do proper restores in the way I'm looking for, but I can look into that separately. I updated the process helper to shell out to mono when appropriate. I tried to keep it small so hopefully there's no fallout from the change. |
very cool. thanks |
open System.Text.RegularExpressions | ||
|
||
/// [omit] | ||
let executeCommand command args = |
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.
could you please make this one private?
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.
Done
Add some Xamarin.iOS and Xamarin.Android helpers
Here are some helpers for building and packaging Xamarin.iOS and Xamarin.Android apps